Matplotlib: Compare Values with Different Color in Bar Chart March 29, 2021cocyer In this tutorial, we will compare values with different color in one bar chart. You can implement it in matplotlib. 1.Import library import [...]
Matplotlib: Create Pie Chart Using plt.pie() March 29, 2021March 29, 2021cocyer In this tutorial, we will use an example to show you how to create a pie graph using plt.pie() in matplotlib. 1.Import library [...]
Matplotlib: Create Multiple Plots in One Figure Using plt.subplots() March 29, 2021cocyer In this tutorial, we will use an example to show you how to draw multiple plots in the same figure using plt.subplots() in matplotlib. [...]
Matplotlib: Create a Stack Plot Using plt.stackplot() March 29, 2021cocyer In this tutorial, we will use an example to show you how to create a stack plot using plt.stackplot() in matplotlib. 1.Import library [...]
Linux cat Command: Display File Content to Screen March 29, 2021cocyer In this tutorial, we will introduce how to use linux cat command to display file content. For example: cat .profile We will see [...]
Linux mkdir Command: Create a New Directory March 28, 2021cocyer In this tutorial, we will introduce how to use linux mkdir command to create a new directory. Here is an example code: mkdir [...]
Linux rm -ir Command: Delete File or Directory Recursively March 28, 2021cocyer In this tutorial, we will introduce how to delete file or directory in linux. We can use rm -ir command. You should notice: [...]
Linux mv -i Command: Move the Source File to Target File March 28, 2021cocyer In this tutorial, we will introduce how to use mv -i command to move files in linux. mv –i sourceFile targetFile Here is [...]
Linux cp –ir Command: Copy the Source Directory to Target Directory March 28, 2021March 28, 2021cocyer In this tutorial, we will introduce how to use cp -ir command to copy the source directory to target directory in linux. We [...]
Linux cd Command: Change Directory to Another One March 28, 2021cocyer Linux cd command can change directory from the current directory to another one. In this tutorial, we will show you how to use it. [...]