Introduction

Introduction

This is a versatile R package designed to streamline phonetic transliteration between Hindi and English languages. This package serves as a valuable tool for individuals, researchers, and businesses working with multilingual data or requiring seamless translation between Hindi and English datasets.

Installation

You can install the sanketphonetictranslator package from CRAN using the following command:

install.packages(sanketphonetictranslator)

Or you can install the development version from GitHub:

remotes::install_github("metalwings-design/SanketPhoneticTranslator")

Usage

To use the package, first load it into your R session:

library(sanketphonetictranslator)

Dataset Transliteration

You can also transliterate entire datasets using the transliterate_dataset function:

#load data
data("dataset")
data <- dataset

# Transliterate the dataset from Hindi to English
translated_data <- transliterate_dataset(data, "hindi2english")

# View the first few rows of the translated dataset
head(translated_data)