The Tutorials in this series are created using Python 3.4.3, IPython 5.1.0 on Ubuntu 12.04. Python is a programming language that lets you work more quickly and integrate your systems more effectively. Read more
Foss : Python 3.4.3 - English
Outline: >Use Python 3.5.2 >Use Ipython version 5.1.0 >IPython is an enhanced interactive Python interpreter. >Invoke the IPython interpreter >Quit the IPython interpreter >Navigate th..
Outline: Use Python 3.4.3 Use Ipython version 5.1.0 Start IPython with pylab. ImportError if matplotlib is not installed clf() function Use the linspace function to create equally spac..
Outline: Use Python 3.4.3 Use Ipython version 5.1.0 Modify the attributes of a plot Pass additional keyword arguments to plot command Add title to a plot using 'title' command. Incor..
Outline: Use Python 3.4.3 Use Ipython version 5.1.0 Save plots using the savefig() function. Save the plots in different formats like pdf ps png svg eps
Outline: -Use Python 3.4.3 - Use IPython 5.1.0 - Draw multiple plots which are overlaid. - Operations on individual plots. - Use the figure command. - Distinguish between multiple over..
Outline: * Use Python 3.4.3 * Use IPython 5.1.0 * Creating subplots * Switching between subplots. * Subplot command * Passing arguments to subplot command. * First argument is the num..
Outline: * Use Python 3.4.3 * Use IPython 5.1.0 * Retrieve the history using %history command. * View only a part of history by passing argument to %history command. * Pass arguments t..
Outline: load data from file single column multiple columns separated by delimiter cat command loadtxt() columns separated by spaces columns separated by semi-colon unpack argument ..
Outline: plotting data list list element-wise squaring plot data points clear plots errorbar function dots or filled circles in plot plot with red pluses explore documentation in ip..
Outline: scatter plot scatter function scatter plot with various arguments logarithmic plot loglog function cat command loadtxt function unpack parameter of loadtxt linspace scatte..
Outline: * Use Python 3.4.3 * Use IPython 5.1.0 * To produce scatter plot * Plot a pie chart using pie() function * Plot a bar chart using bar() function * Access the matplotlib online..
Outline: What is a list? Define List List index Create: List with elements Empty list List within a list Find out the list length using len function Access elements using their..
Outline: For loop syntax Example to use For loop Indentation in for loop Create blocks in python using for Iterate over a list using for loop How to get out of the block use of Range(..
Outline: What are strings? How are strings denoted in Python? String concatenation Multiply a string with an integer Accessing individual elements of a string Accessing elements of a s..
Outline: Open a file Open() function Different Modes of opening a file Read() method Read the content of the file line by line Read the entire content of the file Append the lines of ..
Outline: What is Parsing data? split function and its syntax What is string tokenizing? How to split a string on whitespace? split function with argument strip function and example Co..
Outline: Statistical operations in Python Installation of Numpy for mathematical and logical operations Installation of pip to install python libraries loadtxt() function with example G..
Outline: Overview of array Usage of numpy library How to create arrays How to create two dimensional array arange() method reshape() method How to find the shape of an array? Create ..
Outline: Create a one-dimensional array Create a two-dimensional array Accessing individual elements of an array How to change the value of an array How to change more than one elements..
Outline: Read images into arrays How to access parts of an array? imread command imshow command show command How to check the dimensions of an array? Example to access parts of an ima..