visual_diff: HTML widget to visually compare two files

Description Usage Arguments Value See Also Examples

View source: R/visual-diff.R

Description

Currently supports:

Usage

1
visual_diff(file_old, file_new, width = NULL, height = NULL)

Arguments

file_old, file_new

Paths to files to compare

width, height

Output size

Value

A HTML widget

See Also

visual_diff_output() for use within Shiny apps

Examples

1
2
3
4
5
6
7
8
path1 <- tempfile()
path2 <- tempfile()
writeLines(letters, path1)
writeLines(letters[-13], path2)

if (interactive()) {
  visual_diff(path1, path2)
}

Example output



diffviewer documentation built on Oct. 1, 2021, 1:06 a.m.