Image of NetCDF downscaling

Working with NetCDF and Binary climatic data in R

Climatic Data in Hydrological Analysis Climatic data such as temperature and precipitation are essential for any hydrological analysis. Usually, several years of data are required to do any type of hydrological analysis. The climatic data is obtained from either satellite-based observation or in situ observation. For hydrological analysis historical precipitation and temperature data is essential. Usually these data can be obtained from Indian Meterolgocal Department (भारतीय मौसम विज्ञान विभाग:IMD) free of cost....

October 3, 2024 · 7 min · Dr.Ankit Deshmukh
Image of Data and Stringr logo

Data Cleaning with R using 'PDFtools' and 'stringr'

SBI Submits all the data to ECI and ECI publish it on Thursday 21 Mar 2024, 6:32 PM Links of 2 files are provided here: Disclosure of Electoral Bonds Details of Electoral Bonds submitted by SBI on 21st March 2024 (EB_Redemption_Details) Details of Electoral Bonds submitted by SBI on 21st March 2024 (EB_Purchase_Details) To know the background of the case read this: SBI submits all electoral bond details, including unique numbers, to ECI...

March 25, 2024 · 9 min · Dr. Ankit Deshmukh
Image of GDAL and OSGeo

Introduction of GDAL with R programming

Getting started with gdal GDAL (Geospatial Data Abstraction Library) is a free and open source translator library for raster and vector geospatial data formats. It also comes with a variety of useful command line utilities for data translation and processing. GDAL is used by many GIS software packages, such as QGIS, ArcGIS, and GRASS GIS and R. It is also used in many scientific applications that require geospatial data processing, such as remote sensing, hydrology, and geology....

October 24, 2023 · 4 min · Dr. Ankit Deshmukh

How to create a pretty facet-boxplot with custom fonts

How to make a better boxplot with custom fonts, let’s explore this in this post, it can be used for the standard template for boxplot with facet and user defined fonts. Required R libraries: if(!require(tidyverse)){install.packages("tidyverse");library(tidyverse)} # for ggplot2 function if(!require(gapminder)){install.packages("gapminder");library(gapminder)} # for sample data if(!require(showtext)){install.packages("showtext");library(showtext)} # to import fonts Add fonts in R session font_add_google("Karla", "Karla") # adding local font font_add(family = "Helvetica", regular = "C:/Windows/Fonts/Helvetica 400.ttf") # Adding from Google fonts font_add_google("Roboto Slab", "Roboto Slab") # adding font from the web/google font font_families() ## [1] "sans" "serif" "mono" "wqy-microhei" "Karla" ## [6] "Helvetica" "Roboto Slab" Define theme for Boxplot and fonts themeBox <- function(base_family = "sans", exFont, ....

January 21, 2022 · 2 min · Dr. Ankit Deshmukh
Image of R and Quote

Getting Started with R Programming

R is a very versatile statistical tool and programming language. It’s my all-time good-to-go data analysis tool. It is fast, reliable and nifty. It provides great flexibility for my daily work and analysis tasks. If one uses R, they could consider RStudio as a more sophisticated GUI than the Base R once. 1. Installing R Step 01: Install R-Binaries from R-Project Step 02: Install RStudio IDE from RStudio 2. Customizing RStudio A lot of ways you can make RStudio more useful for your personal use....

September 20, 2021 · 3 min · Dr. Ankit Deshmukh