Articles by Python on The Data Sandbox

Merging PDFs with Python

April 14, 2022 | Python on The Data Sandbox

I am currently looking for a new job, which means I need to create many resumes and cover letters. When creating a resume, it is good practice to create a PDF file. PDFs cannot be edited, which can make them difficult to work with, but they retain their formatting. It ... [...Read more...]

Simple Neural Networks in Python

March 20, 2022 | Python on The Data Sandbox

Neural Networks (NN) have become incredibly popular due to their high level of accuracy. The creation of a NN can be complicated and have a high level of customization. I wanted to explore just the simplest NN that you could create. A framework as a workhorse for developing new NN. ... [...Read more...]

Python in R Markdown

March 3, 2022 | Python on The Data Sandbox

Photo by David Clode on Unsplash The main advantage of using the R Markdown format is the utility of running R code within the text. This is clearly more advantageous than just writing code in a Markdown file. R Markdown is however limited to R cod...
[...Read more...]