Publications by Naimul Islam

HTML

19.06.2020

...

6 sym

DT_Package

12.06.2020

DT Package The R package DT provides an R interface to the JavaScript library DataTables. library(DT) datatable(iris) CSS classes of the table datatable(head(iris), class = 'cell-border stripe') Enable table editing double-click a cell to edit its value. datatable(head(iris), editable = 'cell') Change the column name datatable(head(iris), col...

394 sym R (1714 sym/12 pcs)

Leaflet for R

18.06.2020

R :Leaflet R and Leaflet (a Javascript library) to plot schools on a very simple map and show the boundaries of local authority districts. #install.packages("httpuv") #install.packages("leaflet") #install.packages("dplyr") library(leaflet) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:sta...

431 sym R (5051 sym/25 pcs)

patchwork

24.07.2020

R Markdown The goal of patchwork is to make it ridiculously simple to combine separate ggplots into the same graphic- library(ggplot2) library(patchwork) theme_set( theme_bw() + theme(legend.position = "top") ) Add 2 graphs p1 <- ggplot(mtcars) + geom_point(aes(mpg, disp)) p2 <- ggplot(mtcars) + geom_boxplot(aes(gear, disp, group =...

680 sym R (1458 sym/11 pcs) 5 img

Pivot Table in R

30.06.2020

R Pivot table PivotTable.js is a Javascript Pivot Table visualization library with drag’n’drop functionality.. # install.packages("htmlwidgets") # install.packages("rpivotTable") library(rpivotTable) # No need to explicitly load htmlwidgets: this is done automatically R pivot table data(mtcars) rpivotTable(mtcars,rows="gear", cols=c("cyl...

135 sym R (256 sym/2 pcs)

HTML

19.06.2020

...

6 sym

dygraphs in R

05.07.2020

dygraphs for R dygraphs package is an R interface to the dygraphs JavaScript charting library. It provides rich facilities for charting time-series data in R, #install.packages("dygraphs") library(dygraphs) Basic graph library(dygraphs) lungDeaths <- cbind(mdeaths, fdeaths) dygraph(lungDeaths) Range selector dygraph(lungDeaths) %>% dyRang...

612 sym R (6448 sym/24 pcs)

Leaflet package

23.10.2020

R and Leaflet (a JavaScript library) to plot schools on a very simple map and show the boundaries of local authority districts. #install.packages("httpuv") #install.packages("leaflet") #install.packages("dplyr") library(leaflet) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## #...

554 sym R (7867 sym/23 pcs)

12052020

05.12.2020

#install.packages("rnaturalearth") #install.packages("rnaturalearthdata") #install.packages("ggspatial") #install.packages("sf") #install.packages("rgeos") library(rnaturalearth) library(rnaturalearthdata) library(ggspatial) library(sf) ## Linking to GEOS 3.8.0, GDAL 3.0.4, PROJ 6.3.1 library(ggplot2) library(rgeos) ## Loading required p...

7 sym R (5025 sym/10 pcs) 2 img

Document

01.05.2021

Disease surveillance Column diarrhea surveillance Column Day wise diarrhea cases Severity of diarrhea cases ...

161 sym