Questions tagged [vignette]

Vignette is software that offers content management, portal, collaboration, document management, and records management.

Vignette Corporation is a company headquartered in Austin, Texas, that offers a suite of content management, portal, collaboration, document management, and records management software.

Vignette's Platform consists of several suites of products allowing non-technical business users to create, edit and track content through workflows and publish this content through Web or portal sites.

120 questions
8
votes
1 answer

Authentication failed for user: null

I have an API "Vignette Collab" that is running on an Apache stack with Java, I inherited a legacy codebase and need to find where this error is coming from apparently the last developer built a feature that wasn't working and that's where the error…
Alex Borsody
  • 1,908
  • 9
  • 40
  • 74
8
votes
1 answer

Enforce PDF package vignette with knitr

I have a vignette for my package which compiles to a nice PDF when compiled with Rscript -e 'rmarkdown::render("tmod.rmd")'. However, when I compile and install the package, start R and type vignette("mypackagename"), a browser window opens with…
January
  • 16,320
  • 6
  • 52
  • 74
7
votes
1 answer

Compile a vignette using `devtools::build_vignette` so that .md is kept in the vignettes directory

I am trying to compile a package vignette such that an .md file remains in the vignette folder so that it is still visible on github. I am using devtools for all of this. I have looked at this approach and will outline it below: I have…
boshek
  • 4,100
  • 1
  • 31
  • 55
7
votes
1 answer

What is the difference between a manual and a vignette?

I've been reading through R's Affy manual, and it refers to other vignettes. Does the difference between these two terms simply relate to quantity of content, or is there more to it?
Atticus29
  • 4,190
  • 18
  • 47
  • 84
6
votes
1 answer

In R, the same code cannot be knit out in package Vignette file. "list" object cannot be coerced to type integer

This question is about generate_msts() function in package GRATIS. I add some new stuff (make the function has options to transform its output into a lovely tsibble format or keep the original ‘list’ format) and prepare update to CRAN. New code add…
user13971133
6
votes
1 answer

Maven war artifact with car extension

I am trying to use Maven to generate an artifact for deploying on Vignette Portal. The packaging is exactly the same as a war artifact but the file should have car extension instead. Options I've tried and I've not been able to complete. Use war…
fglez
  • 8,422
  • 4
  • 47
  • 78
6
votes
0 answers

Adding a vignette stops devtools::check() from working

I've been writing a personal package with reference to Hadley's guide. However, adding a minimal vignette using devtools::use_vignette() seems to break devtools::check(). When I try to run check() I get one error: file…
r.bot
  • 5,309
  • 1
  • 34
  • 45
6
votes
1 answer

R CMD INSTALL --build package --> "vignettes missing"

Problem: C:\>Rcmd.exe INSTALL --build --library=C:/Users/local_aphalo/Documents/R/win-library/3.0 photobiology C:\>Rcmd.exe INSTALL --build --library=C:/Users/local_aphalo/Documents/R/win-library/3.0 photobiology_0.2.6.tar.gz The first command (as…
Pedro J. Aphalo
  • 5,796
  • 1
  • 22
  • 23
5
votes
1 answer

What is the purpose difference between README and vignette in R package?

I have an R package on GitHub that I am about to submit to CRAN. Up to now, the package has had an extensive README.md document that shows: examples of package core functions execution, examples of package demo execution, some benchmark results.…
Marta Karas
  • 4,967
  • 10
  • 47
  • 77
5
votes
1 answer

R: package vignette not built

Problem I created a small internal package for my company. To describe hot to use it, I wrote a vignette. But for some reason, the vignette is not built when I hit Install and Restart in RStudio. Further Information I use roxygen for the package…
der_grund
  • 1,898
  • 20
  • 36
5
votes
1 answer

devtools::check fails because of vignette building

I am developing a package and consider including a vignette in it. I use RStudio for my package development and followed the instructions from Hadley Wickam to use Rmarkdown and knitr or writing the vignette. I am able to compile the vignette when…
ClementWalter
  • 4,814
  • 1
  • 32
  • 54
5
votes
2 answers

available CRAN vignettes

There's the available.packages() function to list all packages available on CRAN. Is there a similar function to find all available vignettes? If not how would I get a list of all vignettes and the packages they're associated with? As a corner…
Tyler Rinker
  • 108,132
  • 65
  • 322
  • 519
4
votes
1 answer

Build R package vignettes with paged data frames

I'm trying to print pretty tibbles with df_print: paged option in my vignettes. My output settings are the following: output: html_document: df_print: paged highlight: pygments number_sections: yes toc: yes When I build vignettes…
aschmsu
  • 302
  • 1
  • 9
4
votes
1 answer

How to include inst/REFERENCES.bib in vignette

Running devtools::check() on my computer I can force my package to build without error using an absolute path to my .bib file. But since I included all my citations in the package vignette and tried to point to the .bib file that contains all the…
Michael Roswell
  • 1,300
  • 12
  • 31
4
votes
2 answers

How to properly organise vignettes and inst folders when creating new R package

Before asking I accept that many parts of this question have been touched upon in other stack over and I have read the Hadley Wickham inst and vignette sections but I am still struggling to fix my warnings. Apologies if this question is a bit long…
Krutik
  • 461
  • 4
  • 13