Skip to content

Dhihram/namaKU

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Making Acronym and Sequence Number from Long Name with namaKU

The namaku purpose is to generate the acronym and sequence number for long name. This package will prevent the users from error when generating the acronym and sequence number.

This package is the part of Dhihram Tenrisau, MSc Health Data Science summer project, 'Phylodynamic of Norovirus in UK 2003-2023'. The project is supervised by Stéphane Hué

Installation

You can install the development version of namaKU from GitHub with:

# install.packages("devtools")
devtools::install_github("Dhihram/namaKU")

Example

This package needs the additional package rlang, tidyverse, and dplyr

library(dplyr)
library(rlang)
library(tidyverse)
library(namaKU)

Data

This package need a data frame that contains the long name. The data frame should have a column that contains the long name. The data frame should not have NA values in the location column.

# Assuming 'df' is your data frame and it has a column 'AreaName'
d <- data.frame(id = seq(1:3), AreaName = c("loNDON", "Port Alegre", 'MakaSSar'), sub = c('a', 'b', 'c'))

#Check the data
str(d)

#View the data
knitr::kable(d)

Package Utilization

The parameter of this package consist of :

  • df: data frame that contains the long name

  • location: the name of column that contain long name

  • vocal: TRUE to keep vocal letter, FALSE to remove vocal letter

  • number number of letter to keep from each word

  • seq: TRUE to add sequence number, FALSE to not add sequence number.

d <- namaKU(df = d, location = AreaName, vocal = FALSE, number = 3, seq = TRUE)
knitr::kable(d)

For the manual, you can see here

About

version 0.1.0

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages