Questions tagged [parallel-coordinates]

Parallel coordinates are diagrams in which each data column has its axis and each data point is represented by a line connecting all axis, and intersecting them at appropriate points dependent on data. They are typically used to visualize multidimensional data.

125 questions
64
votes
10 answers

Parallel Coordinates plot in Matplotlib

Two and three dimensional data can be viewed relatively straight-forwardly using traditional plot types. Even with four dimensional data, we can often find a way to display the data. Dimensions above four, though, become increasingly difficult to…
Nathan
  • 4,777
  • 1
  • 28
  • 35
9
votes
2 answers

dplyr masks GGally and breaks ggparcoord

Given a fresh session, executing a small ggparcoord(.) example provided in the documentation of the function library(GGally) data(diamonds, package="ggplot2") diamonds.samp <- diamonds[sample(1:dim(diamonds)[1], 100), ] ggparcoord(data =…
Hannes
  • 93
  • 4
9
votes
1 answer

ggplot/GGally - Parallel Coordinates - y-axis labels

Does anyone know if there is a way to add variable labels to the ggparcoord function in GGally? I've tried numerous ways with geom_text, but nothing is yielding results. To be more explicit, I am looking to pass the row.names(mtcars) through…
maloneypatr
  • 3,562
  • 4
  • 23
  • 33
8
votes
1 answer

parallel coord plot ggplot2 deprecated?

When i try to make a parallel coordinate in ggplot2, i get the message that it is deprecated: require(ggplot2) ggpcp(mtcars) + geom_line() Warning message: 'ggpcp' is deprecated. See help("Deprecated") however, the ggplot documentation did not say…
Henk
  • 3,634
  • 5
  • 28
  • 54
7
votes
1 answer

d3js Parallel Coordinates categorical data

I am looking for a method of adding categorical data to the d3js parallel coordinates. D3js is new to me, I can understand some of what is being done, but have not been able to figure out a way of doing this. Parallel sets are not a good option, as…
user1799353
  • 71
  • 1
  • 2
5
votes
2 answers

How to plot parallel coordinates on pandas DataFrame with some columns containing strings?

I would like to plot parallel coordinates for a pandas DataFrame containing columns with numbers and other columns containing strings as values. Problem description I have following test code which works for plotting parallel coordinates with…
Cedric Zoppolo
  • 4,271
  • 6
  • 29
  • 59
4
votes
0 answers

How to rotate axis label of plotly parallel coordinates plot?

How to rotate axis label of plotly parallel coordinates plot? The following image is what I wan to do: I attached a source script: import plotly.express as px df = px.data.iris() fig = px.parallel_coordinates(df, color="species_id", …
4
votes
1 answer

How to make 3D parallel coordinates plot in r

I´m looking for a R package to plot 3d parallel coordinates plot. It looks like so: Do you known any package?
alexmulo
  • 751
  • 4
  • 11
  • 23
3
votes
0 answers

parallel coordinates in protovis

I came across this http://mbostock.github.com/protovis/ex/cars.html cars parallel coordinates sample: It works well. We can apply filters along the parallel lines and the corresponding data(horizontal lines) are highlighted. But what I wanted to…
SASM
  • 1,292
  • 1
  • 22
  • 44
3
votes
1 answer

How to show labels on the left side of the vertical line in a parallel coordinates plot created with echarts4r?

The context I know the following code produces the following plot library('echarts4r') dat <- structure(list( labels = c("string4", "string3", "string2", "string1"), quantity = c(19L, 10L, …
rdrg109
  • 265
  • 1
  • 8
3
votes
1 answer

Parallel coordinates in Altair

I want to do a parallel coordinates plot with multiple y axis. I've found how to do it in Vega-Lite here but I haven't found the way to do it with Altair, there's only a very simple example where all the y axis are the same. Is there any way to do…
3
votes
0 answers

Plotly parallel coordinates charts don't display correctly in subplots?

I'm trying to create a poster-style plot for several parallel coordinate charts using plotly's Parcoords. The first parallel coordinate chart displays correctly but the others only show the axes of the chart (which look correct) but not the…
pcmitch
  • 31
  • 3
3
votes
1 answer

Adding legend to parallel coordinated plot using matplotlib proxy artist

I am having a hard time adding legend to matplotlib.pyplot, my goal is to make parallel coordinates plot similar to the one Parallel Coordinates plot in Matplotlib Since my use-case is similar, I used the solution provided, except that I have only…
krishna110293
  • 127
  • 1
  • 1
  • 7
3
votes
2 answers

Plotting parallel coordinates in pandas/python

I am trying to use pandas in python to plot the following higher-dimensional data: https://i.stack.imgur.com/34nbR.jpg Here is my code: import pandas from pandas.tools.plotting import parallel_coordinates data =…
C. Stucki
  • 33
  • 1
  • 6
3
votes
1 answer

Parallel Coordinates with check box

I have some data that I want to visualize them using parallel coordinates. My data consists of 200 rows (cases) and 100 columns (features). I just need to visualize some part of data (200x8), including feature1, feature2, ..., feature8. Also I have…
sara_123
  • 433
  • 8
  • 25
1
2 3
8 9