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
1
vote
1 answer

How can I elminate invalid combination of fields in Vega Lite nested charts?

I appreciate in advance any lead you can provide. In the shortened example below, a combination of PMT2 (from Field "Pmt Type") and RX (from field "Measure") is not part of the data. So I want to eliminate that combination from appearing in my…
1
vote
2 answers

Why is that Trelliscope viewer showing empty panels, no images?

I have the below data frame "p" on Pokemon. library("dplyr") library("trelliscopejs") glimpse(p) Rows: 801 Columns: 5 $ pokemon "bulbasaur", "ivysaur", "venusaur~ $ type_1 "grass", "grass", "grass", "grass~ $ attack …
Srinivas
  • 568
  • 1
  • 4
  • 21
1
vote
0 answers

getting error with curl and trellis php wordpress

Hello their i am getting error in this code with trellis server but it is working on other server perfectly
BugsCreator
  • 433
  • 3
  • 10
1
vote
0 answers

How to fix "vagrant up" errors when trying to set up Trellis?

I've been trying to set up a Trellis local WordPress dev environment from the Roots stack. I did all the steps from the docs, have the recommended folder structure, downloaded all the dependencies, but I still get a few errors. First I get some…
Tom
  • 387
  • 2
  • 12
1
vote
1 answer

Missing right tick marks in R latticeExtra c.trellis

When using latticeExtra:::c.trellis to combine plots, the right-side tick marks and text/numeric labels go missing, and I'd like to bring them back: library(latticeExtra) set.seed(1) foo <- data.frame(x = 1:100, y = 1:100 +…
Bryan
  • 933
  • 1
  • 7
  • 21
1
vote
1 answer

Vagrant Box with Trellis/Bedrock

I recently set up a Trellis/Bedrock/Sage environment. I like it so far but have been running into the issue that if I step away from my computer, I can’t reconnect to my local production environment and have to start up my wordpress install from…
Mike
  • 65
  • 1
  • 8
1
vote
1 answer

Bar chart with Trellis--How to remove categories that are filtered?

The question is regarding the top bar chart. I used Trellis tab in Properties to divide among AL and NL. As you can see, the values of the team that belong to the other league were filtered, and yet there still is an empty space allotted for the…
Eric Kim
  • 41
  • 8
1
vote
2 answers

Two factor lattice boxplots in R

I'd like to create a lattice box plot from data that has multiple factors and multiple levels for each factor. For each plot in the lattice plot I'd like the x axis to be the combination of both factors and their levels and the y axis to be the…
Nathan
  • 323
  • 3
  • 13
1
vote
0 answers

bedrock wordpress, Nginx proxy & node.js

Problem: a server behind proxy unreachable for api listening port 3050 with bedrock wordpress. I had deployed wordpress with Trellis to my VMs. Everything is up and running perfectly. The wordpress site is accessible to the http://example.com but it…
Yooniks
  • 71
  • 1
  • 6
1
vote
1 answer

How do I add another plot to hexbinplot?

I'm trying to plot the location of an incinerator on another plot. # The first plot hexbinplot(Easting~Northing | Bclass4, BIRTH_NO68, las=1, scales =list(x = list(log = 10, equispaced.log = FALSE)), aspect = 1, bins=50,…
1
vote
2 answers

Conditional Histograms Using Lattice Package, Output Plots Incorrect

I'm using histogram from the lattice package to plot two histograms conditioning on a variable with two options: Male or Female. histogram(~ raw$Housework_Tot_Min [(raw$Housework_Tot_Min != 0) & (raw$Housework_Tot_Min < 1000)] | raw$Gender) Output…
jwint
  • 11
  • 3
1
vote
1 answer

How to change the legend title and position in a lattice plot

I'm using lsmip from lsmeans to plot my model, library(lsmeans) PhWs1 <- lsmip(GausNugget1, Photoperiod:Ws ~ Month, ylab = "Observed log(number of leaves)", xlab = "Month", main = "Interaction between Photoperiod…
Luisa
  • 35
  • 2
  • 12
1
vote
2 answers

Condition layer across panels in lattice

I would like to plot individual subject means for two different conditions in a lattice stripplot with two panels. I would also like to add within-subject confidence intervals that I have calculated and stored in separate data frame. I am trying to…
JStevens
  • 13
  • 2
1
vote
2 answers

Lattice xyplot() Adding a different mean trend line to each panel?

I have a simple trellis scatterplot. Two panels - male/female. ID is a unique number for each participant. The var1 is a total test time. Mean.values is a vector of two numbers (the means for gender). No point including a best fit line so what I…
Rachel
  • 47
  • 5
1
vote
2 answers

Spotfire - sorting Bar chart individually within trellis panels

Could anyone help me with a Spotfire issue? 3 data types are avalialbe. Locations(sting), areas within these locations(string) and sum of hours associated with the areas and therefore the locations. Objective: I'm trying to show data value axis:…
Julia
  • 11
  • 3