do4ds
do4ds copied to clipboard
A book on DevOps for Data Scientists with CRC Press.
Changes indicated with "Text..." mean I rewrote that paragraph. Searching for `Text` should make it easy to find. Overall - Not removing blank page after Part I (or other parts)...
- [ ] p47-48 -- Code on page 48 should be interspersed with commentary at bottom of page 47 - [ ] p51-52 -- Line "When the R or Python...something...
Changed "divine" to "define" in line #100
I ran `app.run(port = 8080)` which opened the docs page in browser. Clicking the Try button under Predict POST request produces a prediction (200 OK). However, the R shiny app...
I am reading through the book and working through the labs. I am considering using the early chapters of the book as a text for course that I am teaching...
There's this code to get penguins data from duckdb in lab 2: ``` import duckdb con = duckdb.connect('my-db.duckdb') df = con.execute("SELECT * FROM penguins").fetchdf().dropna() con.close() ``` But penguins data does...
The [model.qmd](https://github.com/akgold/do4ds/blob/main/_labs/lab1/model-basic-py.qmd) file uses python code but does not specify which python env and/or quarto engine is used. By default, quarto uses knitr engine so it tries to use a...