Nizamuddin Siddiqui has Published 2303 Articles

Python - Plotting Area charts in excel sheet using XlsxWriter module

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 12:32:24

314 Views

An area chart represents the change in a one or more quantities over time. It is made by plotting a series of data points over time, connecting those data points with line segments, and then filling in the area between the line and the x-axis with color or shading.Example# import xlsxwriter module import xlsxwriter ... Read More

Python - Plotting an Excel chart with pattern fills in column using XlsxWriter module

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 12:24:37

220 Views

Charts are composed of at least one series of one or more data points. Series themselves are comprised of references to cell ranges. For plotting the charts on an excel sheet, firstly, create chart object of specific chart type( i.e Column chart etc.). After creating chart objects, insert data in ... Read More

Python - Plotting an Excel chart with Gradient fills using XlsxWriter module

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 12:21:30

259 Views

XlsxWriter is a Python library using which one can perform multiple operations on excel files like creating, writing, arithmetic operations and plotting graphs.Example# import xlsxwriter module import xlsxwriter # Workbook() takes one, non-optional, argument which is the filename #that we want to create. workbook = xlsxwriter.Workbook('chart_gradient1.xlsx') # The workbook object is ... Read More

Python - Number of values greater than K in list

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 12:14:09

825 Views

One of the basic problems for many complex problems is finding numbers greater than certain number in list in python, is commonly encountered.Example Live Demo# find number of elements > k using for loop # initializing list test_list = [1, 7, 5, 6, 3, 8] # initializing k k = 4 ... Read More

Python - Implementation of Polynomial Regression

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 12:12:29

394 Views

Polynomial Regression is a form of linear regression in which the relationship between the independent variable x and dependent variable y is modeled as an nth degree polynomial. Polynomial regression fits a nonlinear relationship between the value of x and the corresponding conditional mean of y, denoted E(y |x)Example# Importing the libraries import ... Read More

Python - Image Classification using keras

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 12:08:19

397 Views

Image classification is a method to classify the images into their respective category classes using some method like −Training a small network from scratchFine tuning the top layers of the model using VGG16Example#First, include following libraries: # Importing all necessary libraries from keras.preprocessing.image import ImageDataGenerator from keras.models import Sequential from ... Read More

Python - How and where to apply Feature Scaling?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 12:00:35

286 Views

It is a step of Data pre-processing which is applied to independent variables or features of data. It basically helps to normalise the data within a particular range.Why scaling?Most of the times, your dataset will contain features highly varying in magnitudes, units and range. But since, most of the machine ... Read More

Python - Getting started with SymPy module

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 11:54:41

770 Views

SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python. SymPy only depends on mpmath, a pure Python library for ... Read More

What is the implicit implementation of the interface and when to use implicit implementation of the interface in C#?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Aug-2020 11:46:41

895 Views

C# interface members can be implemented explicitly or implicitly.Implicit implementations don't include the name of the interface being implemented before the member name, so the compiler infers this. The members will be exposed as public and will be accessible when the object is cast as the concrete type.The call of ... Read More

How to use order by, group by in c#?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Aug-2020 09:07:34

3K+ Views

Order by is used to sort the arrays in the ascending or in the descending orderGroupBy operator belong to Grouping Operators category. This operator takes a flat sequence of items, organize that sequence into groups (IGrouping) based on a specific key and return groups of sequenceExampleclass ElectronicGoods {    public ... Read More

Advertisements