smsProcess: smsProcess

Description Usage Arguments Details Value See Also Examples

Description

Imports and cleans Android text message backup XML files.

Usage

1
2
smsProcess(file = NULL, keepUnsent = FALSE, charCount = TRUE,
  noMMS = FALSE)

Arguments

file

name of a backup file, such as "sms1.xml"

keepUnsent

Keeps unsent Draft and Failed messages when TRUE. Defaults to FALSE

charCount

When TRUE, adds a column counting the characters in each text.

noMMS

A flag to specify when no MMS data is present. If no MMS data exists, MMS munging code will throw errors. When TRUE, MMS munging code is skipped.

Details

smsProcess imports and cleans raw XML text message backups produced by the Android app "SMS Backup & Restore"

Value

A data.frame of text message data, sorted by date.

See Also

smsBatch For conveniently processing and combining multiple backup files.

Examples

1
2
3
4
5
#Import one backup file with default options
smsProcess("backup.xml")
#Import with non-default options
smsProcess("backup.xml", keepUnsent = TRUE, charCount = FALSE,
noMMS = TRUE)

ejoranlien/smsprocess documentation built on May 16, 2019, 2:22 a.m.