Update regression test output
[cacheSweave.git] / tests / reg-tests.Rout.save
blobae8a18f8dfbc92a46b897a6abd827467db59b0a8
2 R version 2.5.0 (2007-04-23)
3 Copyright (C) 2007 The R Foundation for Statistical Computing
4 ISBN 3-900051-07-0
6 R is free software and comes with ABSOLUTELY NO WARRANTY.
7 You are welcome to redistribute it under certain conditions.
8 Type 'license()' or 'licence()' for distribution details.
10 R is a collaborative project with many contributors.
11 Type 'contributors()' for more information and
12 'citation()' on how to cite R or R packages in publications.
14 Type 'demo()' for some demos, 'help()' for on-line help, or
15 'help.start()' for an HTML browser interface to help.
16 Type 'q()' to quit R.
18 > library(cacheSweave)
19 Loading required package: filehash
20 Simple key-value database (1.0 2007-04-27)
21 Loading required package: stashR
22 A Set of Tools for Administering SHared Repositories (0.3-1 2007-05-14)
23
24 > infile <- system.file("example", "simpleRR.Rnw", package = "cacheSweave")
25
26 > setCacheDir("cache")
27
28 > Sweave(infile, driver = cacheSweaveDriver)
29 Writing to file simpleRR.tex
30 Processing code chunks ...
31  1 : echo term verbatim (label=LoadPackages)
32  2 : echo term verbatim (label=FitLinearModel)
33  3 : echo term tex (label=CoefficientTable)
34  4 : echo term verbatim pdf (label=LinearModelDiagnosticPlots)
36 You can now run LaTeX on 'simpleRR.tex'
37
38 > ls()
39 [1] "airquality" "fit"        "infile"     "oldpar"    
40
41
42 > ## Check to see that objects were properly cached
43 > ## Database should contain 'airquality' and 'fit'
44
45 > dname <- dir("cache", full.names = TRUE)
46 > library(stashR)
47 > db <- new("localDB", dir = dname, name = "cacheDB")
48 > dbList(db)
49 [1] ".__856743e03e5d0d595e4ee5c9ab86052e__"
50 [2] "airquality"                           
51 [3] ".__1a92865db91cad5463c99e83d570c353__"
52 [4] "fit"                                  
53