Normalization

Normalization is a process of representing a database in terms of relations in standard normal forms where first normal form is a minimal requirement. In short: It can be defined as the trade off between data redundancy and performance. In this process relations are examined and anomalies are being detected and removed. While normalizing a … Continue reading Normalization

Importance of branching in git hub in project management

Github is a web based git, which is used for hosting and managing the projects or software packages on the web. Previously, I have had one or two posts published in the same category, but at a very basic level more of like an introduction. Now, the purpose of this post is to focus on the … Continue reading Importance of branching in git hub in project management

Using Rperform with popular R packages to analyze their performance

Rperform is a first-of-its-kind package for detailed performance analysis of R packages. In general, Rperform aims to be a standard tool for performance testing R packages and their code. Rperform can be used to plot the performance metrics of a R package.  In this post, I have explained how to use Rperform with different R … Continue reading Using Rperform with popular R packages to analyze their performance

An introduction to R package development and unit testing: Community Bonding Period(GSoC’ 2017)

First of all, this post assumes that you are a linux user and an open source supporter! 😉 This post aims to cover the basics of R package development and testing in R(as the title screams!). The initial step regarding R and its installation is given here . You can visit the same, if required. … Continue reading An introduction to R package development and unit testing: Community Bonding Period(GSoC’ 2017)

R -statistical computing

R is a programming language and software environment for statistical computing widely used among statisticians and data miners for developing statistical software and data analysis. INSTALLATION OF R ON UBUNTU To obtain the latest package of R,  in your /etc/apt/sources.list file add an entry like: deb https://<my.favorite.cran.mirror>/bin/linux/ubuntu wily/ At  the place of wily you have … Continue reading R -statistical computing