Ετικέτα: python

Data Visualization with Matplotlib by AI Planet— Tutorial and Evaluation of the course

Inthis article, I’m going to share with you the notebook of the challenge in Mini-Bootcamp: Data Visualization in Matplotlib by AI Planet and then we are going to evaluate the whole content of the bootcamp. For your reference, AI Planet is a Data Science community that offers free courses, bootcamps, challenges, live sessions and more in order to start your career in […]

Embed a Power BI report within a Jupyter Notebook using Python

Introduction Both Python and Microsoft Power BI are two necessary tools that every Data Analyst/Business Intelligence Analyst use. What if we want to combine both of them in one project? In this article we are going to see how we can simply embed a Power BI report within a Jupyter Notebook with the help of Python. Install and Import libraries Install […]

Generate QR Codes with 2 lines of code in Python

Introduction Based on Wikipedia: Python Libraries In order to produce the popular image of the QR code you need the following libraries in Python: 1. PyQRCode (when installing via pip) or QRCode (when installing via conda) 2. pypng (when installing via pip) import pyqrcode as qr (import qrcode as qr) import pypng QR Code -Text Why always […]