End-to-end-provenance / RDataTracker

An R library to collect provenance from R scripts.
http://end-to-end-provenance.github.io/
GNU General Public License v3.0
39 stars 6 forks source link

Data node created in RMarkdown when details = FALSE #678

Closed blernermhc closed 1 year ago

blernermhc commented 1 year ago

The data function creates an output data node inside an RMarkdown chunk even when details = FALSE. This can be seen in the test script RMarkdownChunkNoDetails.RMD.

This is on the ProvSean_Parse branch.

data(iris)
x <- iris[,1]
y <- iris[,2]
summary(lm(y~x))
n <- z + z

image

blernermhc commented 1 year ago

I think this is ok. This is like reading a file which we want to track even when we are not collecting details.