Data Science

Data Science includes, not explicitly, R and Python programming tuturials, statistical data analysis, maching learning using Python, statistical modeling using R and Python, clustering using R, etc.

Statistical data analysis focus one both the correlation analysis, and causal analysis between different factor variables. Linear regression, Generalized linear models, discrete choice models are the most fundamental modeling techniques.

Machine learning and deep learning using tensorflow package in Python. These models are important for artificial intelligence application. CNN and LSTM are the two most fundamental such models.

Create data frame in R using read.table() function

read.table() function in R is often used when a delimited ASCII file (e.g. text file or csv file) is to…

1 year ago

Creating data frames in R using data.frame()

Data frames are the most widely used data structures in R programming. Unlike each element in vector/matrix/array must have same…

1 year ago

Arrays in R programming

When it is needed to store many elements of same type or mode into one data object in R, you…

1 year ago

Working with Matrix in R programming

If we want to store data of same mode or type in a two-dimensional array in R data analysis, matrix…

1 year ago

R data structure – Working with R Vector data objects

Vector in R programming is one-dimensional array. Its element can be numeric, character, or logital data. To create a vector…

1 year ago

Some important functions for Package management in R

Like in many other programming languages, packages in R are just collections of built-in functions and datasets are combined with…

1 year ago

Insallation of R and RStudio

RStudio acts as an computer-app for using R in a more freindly manner than the default R command window. Before…

1 year ago

Welcome to R Programming

R is one of the most popular programming languages and framework for statistical data analysis and data science. R has…

1 year ago