Questions tagged [trellis]

Trellis is a method for visually displaying multiple complex dependencies

Trellis display is a framework for the visualization of multivariable datasets. Its most common interpretation is in the lattice package in R. The idea for trellis was originally developed in 1995 at Bell Labs, and is described here.

64 questions
0
votes
1 answer

Vega / vega-lite multi-level / hierachy axes

i have seen view composition techniques like facets etc. however i am struggling to create a plot that features multiple view cells / subplots for different combinations of dimensions/groups as seen in the image for the x axis. it should be possible…
mad
  • 3,493
  • 4
  • 23
  • 31
0
votes
1 answer

After changing paswords in vault.yml, deployment fails in trellis

I had a wordpress site setup using Trellis. Initially I had set up the server and deployed without encrypting the vault.yml. Once everything was working fine I changed the passwords in vault.yml and encrypted the file. But my deployment fails now.…
Praneetha
  • 303
  • 4
  • 17
0
votes
0 answers

Difference generating image between .Rmd and .R

The code below is a full .Rmd file that successfully generates a .pdf file with a hovmoller plot of surface temperature. (I apologize for pasting the whole file, but it is short and I'm not sure what might be causing the problem - though I believe…
jbtg
  • 21
  • 2
0
votes
1 answer

Trellis: déploiement fails du to "Error: This is not a multisite install"

I've deployed a wordpress website recently on an AWS server, using Trellis + Bedrock. The first deployment worked fine and I was finally able to get multiple sites running (as sub-folders). Later on, our communication agency sent us a theme (also as…
Vincent
  • 620
  • 7
  • 19
0
votes
1 answer

Spotfire Trellis Maps of Cumulative Activity

I want to create Maps by Year-Quarter each accumulating on the previous quarter. I'm splitting the Maps on Trellis by a Date column so the custom expression looks like this currently: < BinByDateTime([Approved Date],"Year.Month",1)> and the…
0
votes
2 answers

Cannot link third-party library to a js script in Sage theme WordPress

I have installed a third-party library called Moment.js through bower install --save moment. I have a script named calendar.js placed in scripts folder of my theme. However, when I use moment in my calendar.js it seems the library isn't linked to…
fatg
  • 519
  • 7
  • 23
0
votes
1 answer

How do I generate dynamic form from custom field post type in Wordpress?

I'm currently doing a project using Trellis/Wordpress/Sage stack. I also use a couple of plugins: "Advanced custom fields", "Custom post type UI", "Contact form 7" and an extension of Contact Form 7 called Contact form 7 dynamic text extension. I…
fatg
  • 519
  • 7
  • 23
0
votes
1 answer

What's the difference between these two domains?

I'm currently learning about Roots.io's Trellis. In their config they have a file called 'wordpress_sites.yml' as you can see here. After reading the Docs, I'm still confused as to what the difference is between these: wordpress_sites: …
ProEvilz
  • 5,310
  • 9
  • 44
  • 74
0
votes
0 answers

non-binary convolutional codes

Is there any way to adapt the matlab convolutional encoders/decoders to work with non-binary data (i.e., real numbers)? I am trying to construct a trellis of an encoder where the input bits are binary, but the output codewords are real numbers. Any…
Noor
  • 125
  • 2
0
votes
1 answer

How to make knitr work with c.trellis?

With knitr I try to product and combine two lattice plots with c.trellis(), but instead of the expected combined plot I get what looks like the internal representation of the combined trellis object: MWE: --- title: "Knitr and c.trellis" author:…
lindelof
  • 34,556
  • 31
  • 99
  • 140
0
votes
1 answer

Maintain custom tick labels when using `c.trellis`

I have two trellis objects which I would like to combine using c.trellis from latticeExtra (the two figures can be downloaded here). As you can see below, the resulting plot inherits the tick labels from the first figure, whereas the labels from the…
fdetsch
  • 5,239
  • 3
  • 30
  • 58
0
votes
1 answer

How to add new dots to existing lattice plot in R

I used the lattice package to draw a line plot. library(lattice) xyplot(price~month,groups=perc,data=Edf,type='l', main="Percentile chart of OpRes Charge Rates Forcast", ylab="OpRes Charge Rate ($/MWh)",…
hassISC
  • 121
  • 2
  • 3
  • 7
0
votes
1 answer

Plotting Observed Vs Predicted variables on the same graph in Lattice

I'm trying to plot observed and predicted variables on the same plot in lattice. My data is a repeated dataset and I've tried a few things which haven't worked. Any assistance would be much appreciated. Code is given…
John_dydx
  • 951
  • 1
  • 14
  • 27
0
votes
1 answer

trellis plots with pandas.tools.rplots: axes labels

I'm having a hard time getting pandas.tools.rplots to label my axes. Here's a minimal example: import pandas as pd import pandas.tools.rplot as rplot import numpy as np import matplotlib.pyplot as plt sitecodes = ['A'] * 10 + ['B'] * 10 +…
0
votes
0 answers

xyplot trellis multiple pages in same image

I want to make an xyplot with a large number of groups (on the order of 100). If I use the default setup it makes so many graphs on one page that I can't interpret what's going on. But if I naively change the layout it flips through too many plots…
John Montague
  • 1,910
  • 7
  • 21
  • 30