Tuesday, October 30, 2018

R - Vector Arithmetic

So far in our earlier posts we have seen how to create vectors and various operations on vectors like sorting. In this post we will learn to do arithmetic operations on vectors and see how these are helpful for data analysis.

Friday, October 26, 2018

R - Sorting Vectors

For Data Analysis we will often have to order or sort data in increasing and decreasing orders . In this post let's see how to use sorting functions on our CO2 emission dataset.

Wednesday, October 24, 2018

R - Working with Vectors


Complex datasets are usually broken down into components that are vectors. For example, in a dataframe such as the CO2 emissions seen in the earlier post , each column is a vector.  

Tuesday, October 23, 2018

R - Data Types , Data Frames and Vectors


Variables in R can be different types and we need to distinguish numbers from character strings and tables from simple lists of numbers .To distinguish numbers from characters we always use quotes("") for characters.  The function class() helps us determine the type of an object .
 > a <- 2
>class(a)

Thursday, October 18, 2018

Integrating with a payment gateway In angularjs



How to integrate with payment gateways when using angularjs?

When building angular web applications you will at some point want to integrate with certain payment gateways or some 3rd party external urls . Mostly these external urls accept certain post parameters which needs be passed from the calling application .