Increment version number to 0.1.2.9000
diffviewer provides an HTML widget for visually comparing files. It currently wraps three javascript libraries:
It extracts out common UI provided by shinytest and vdiffr.
You can install the released version of diffviewer from CRAN with:
install.packages("diffviewer")
This is a basic example which shows you how to solve a common problem:
library(diffviewer) path1 <- tempfile() writeLines(letters, path1) path2 <- tempfile() writeLines(letters[-(10:11)], path2) visual_diff(path1, path2)
用于比较和可视化文件差异的工具
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
diffviewer
diffviewer provides an HTML widget for visually comparing files. It currently wraps three javascript libraries:
It extracts out common UI provided by shinytest and vdiffr.
Installation
You can install the released version of diffviewer from CRAN with:
Example
This is a basic example which shows you how to solve a common problem: