The legend tag has no wiki summary.
0
votes
0answers
17 views
legend creation using ajax method to get json data
I am working on rickshaw and I am trying to fetch the elements to create a legend. and I have used ajax method to call the json data, data is working fine as ajax method is used, but now the legend ...
0
votes
0answers
20 views
pyplot 3D bar legend
I'm trying to add legend to a 3d bar, but with no success.
I'm getting the error:
AttributeError: 'Patch3D' object has no attribute '_facecolor2d'
A minimal code for reproducing:
from ...
0
votes
2answers
23 views
Legend not displaying color
I have drawn a plot in R.
plot(NA,xlim=c(0,1),ylim=c(0,1), xlab=expression(delta),ylab="K", xaxs="i",yaxs="i",main = "Zones of extreme equality and inequality in BO1") # Empty plot
cols <- ...
0
votes
1answer
52 views
An issue with a legend in ggplot2
I am asking you because I have a problem with a legend in ggplot2.
Here's a simplified case
library(ggplot2)
library(datasets)
bp <- ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group, ...
0
votes
1answer
56 views
Adding a legend to ggplot with facet_grid
I am creating a 3x3 faceted graph using the code shown below. The problem is I get no legend.
# Create column vectors
XID <- rep(c(1,5,10), each=57)
TAD.unit <- c(0, 0.25, 0.5, 0.75, 1, 1.5, 2, ...
2
votes
2answers
67 views
Can colors and shape be changed on a combined line and point plot while maintaining one legend per graph?
Using the following data frame:
day <- gl(8,1,48,labels=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg"))
day <- factor(day, ...
0
votes
1answer
25 views
HighCharts legend.value and legend.percent items to 2 decimal points Math.Round()
unfortunately with how lengthy this thing is I don't have a fiddle for it, as I didn't build it, but basically all I am trying to do is assure that these values get set to two decimal points, ...
0
votes
1answer
40 views
Whitespace in pyplot legend entry?
I want to add some spacing between the end of the legend entry and the legend border. I've tried using the arguments for pyplot.legend but I haven't found a combination that works. Here's a minimal ...
-2
votes
2answers
58 views
Legends for two different sized series in ggplot2@R
Is there a way to get legends for two series when plotted using ggplot in R?
May be I am missing some silly (should have known) argument in the function. I did not find the answer on the internet.
...
0
votes
1answer
59 views
Matplotlib: Multiple legends for contour plot for multiple contour variables
I need to make multiple contours plots of several variables on the same page. I can do this with MATLAB (see below for MATLAB code). I cannot get matplotlib to show multiple legends. Any help would be ...
1
vote
0answers
60 views
Add total or average to ggplot with color legend
I have a plot with a color legend, and would like to add a total/average geom_... series to it.
For example:
d <- ggplot(data=mtcars, aes(x=cyl, y=mpg, color=factor(vs))) + geom_point()
d + ...
0
votes
0answers
35 views
Python: overplotting legends usingTKinter and matplotlib
I've added multiple plots associated to a button event. For clarity it's transmittance of different glasses at different wavelengths. This I can do, but going further I'd like to add legends with ...
0
votes
1answer
38 views
Legend in python without labels
I would like to show a fixed legend in a python matplotlib plot. I am creating a large set of plots, and some of them lack one of the datasets I am using. Let's say I have
data1, plotted in green
...
1
vote
1answer
30 views
Resizeable Legend in Matlab GUI or Legend Scroll Bar
In Matlab I have a GUI that analyses and plots data on to a plot in my main figure of the GUI. I often have to plot a lot of different data sets though with it and have two main problems:
I cannot ...
0
votes
1answer
86 views
Remove white space (i.e., margins) ggplot2 in R
I'm trying to plot a pie chart using GGPLOT2 in R. I want to do this in such a way as to omit the extra margin space.
What I'm doing is similar to what sharoz did in this post here except I want to ...
1
vote
1answer
42 views
How to make matplotlib show legend which falls out of figure?
I draw a graph but unfortunately my legend falls out of the figure. How can I correct it?
I put a dummy code to illustrate it:
from matplotlib import pyplot as plt
from bisect import ...
0
votes
0answers
36 views
Custom legend in a plot
I have a code which I draw a circle of given radius and color on some points of the graph. The following code is only a dummy example to illustrate how my code looks like. I also did use of some ...
0
votes
0answers
45 views
Highcharts: are multiple legends possible?
I'm new to Highcharts and it seems excellent this far. However, I need to have my six series grouped into three columns in the legend. This can be achieved by limiting legend width and using ...
1
vote
1answer
73 views
Control ggplot2 legend look without affecting the plot
I'm plotting lines with ggplot2 like this:
ggplot(iris, aes(Petal.Width,Petal.Length,color=Species)) + geom_line() + theme_bw()
.
I find legend marks to be small so I want them to be bigger. If I ...
0
votes
1answer
28 views
Legend in Highcharts should not pick up colours specified in series data
My code is as follows :
var options = {
chart: {
type: 'column',
events: {
click: $scope.goToPath(link)
}
},
title: {
text: ""
},
xAxis: {
categories: ['You', ...
1
vote
1answer
54 views
Is the matplotlib draggable legend not available on Mac OS 10.8?
I have a small python program that takes in data and plots it using matplotlib (v1.3.x). The plot has a draggable legend. It renders fine on Windows, but I get an error on Mac (OS 10.8.3). The code ...
0
votes
1answer
52 views
Interactive Legend onclick or mouseover - D3js
I've been looking for a way to have my legend control my chart animation (similar to NVD3 examples). I've run into a problem though - nested selections.
var legend = svg.append("g")
...
0
votes
1answer
109 views
Dynamic Data Display Chart with legend checkbox (WPF)
I am trying to recreate the example called "Line Graph legend" under Miscellanous in the following link, http://research.microsoft.com/en-us/um/cambridge/projects/ddd/d3isdk/
I am using WPF not ...
0
votes
0answers
30 views
Legend Displaying values for vjust and size, can't get it to display
New to R in general and this is my first non-trivial graphing project. I'm trying to create a horizontally aligned stacked bar chart, with positive and negative values, plus a line indicating where ...
3
votes
2answers
85 views
How can I change the color of the plot in each iteration in MATLAB?
The following is a part of my matlab code. As it's shown, I would like to plot 8 curves in one plot. But I want to make each curve with one unique color. I also want to change the legend so that it ...
0
votes
0answers
43 views
R: Plot grouped coordinates on world map
I would like to plot a set of coordinates organized in studies/groups on a world map, specified in a legend. The dataset is organized as follows: AUTHORS | LAT | LONG
The are multiple coordinates ...
0
votes
1answer
46 views
Marker count in fusion table map
I went through these two links: first and second which explains how to add count of marker in fusion table map layer. I tried the same technique in my sample map but it didn't work. Actually i need ...
0
votes
0answers
26 views
Getting the Legend in R plotted outside the plotting area [duplicate]
I've a problem with R. I want to add a legend outside the plotting area, on the right side, growing from the northeast corner southward. So I searched for some code and wrote it to my code. The ...
0
votes
1answer
30 views
Empty square for legend for stackplot
I'm trying to generate a stack plot of version data using matplotlib. I have that portion working and displaying properly, but I'm unable to get the legend to display anything other than an empty ...
0
votes
1answer
45 views
Highcharts Legend Selection double fires in Android WebView
I have a pie chart, bar chart, and area chart in my Android app using Highcharts via a WebView. They all have legends to reduce the series as needed for the user. I noticed that selecting an item on ...
0
votes
1answer
69 views
d3js Create legend for bar chart
I'm having a couple of issues with my bar chart. The current issue is trying to create a legend. The legend should read Global and Local (blue & green).
Currently the legend generates 5 boxes - 2 ...
0
votes
3answers
62 views
How to put border around a legend in R?
I m using R to plot legend but i need to draw black border arnd it.
plot.new()
legend(x=0,y=.15, c(" legend1"), cex=1,pt.cex =1.4,col=c("green"),bty="n",fill="green", pch=c(15, 15, 15, ...
0
votes
1answer
59 views
Selecting entries in legend of ggplot in R
I'm creating a figure using ggplot. That figure has 27 lines that I want to show but not emphasize, and two lines, mean and weighted mean, that I want to emphasize. I would like only these last two ...
1
vote
1answer
32 views
Matlab- How to add selective datasets for legends
I have a plot in which 15 datasets are plotted along with their trendlines(lslines). If i use the command legend, it displays all the datasets and lslines, totally 30 legends. But i want to ignre ...
0
votes
0answers
18 views
How to plot legend with border in R?
I m using R language for plotting charts and their legends but i found some issues while drawing legend with border.
plot.new()
legend(x=0,y=.15, c("Some Text"), cex=1,pt.cex =1.4,col=c("green"), ...
0
votes
1answer
67 views
Position of the legend
i would like to write a function with graphical output of original data regression and one for modified data. The original data regression should be an option. Moreover there should be legends in the ...
0
votes
1answer
26 views
Insert the value of an argument into the legend
I am trying to write a function with a graph-output.
I would like to insert a legend with a value of the argument.
For example:
f<-function(x,alpha=0.9){
....
plot(x)
...
0
votes
1answer
29 views
How to embed legend in jfreechart categoryplot?
I want to embed legend into categoryplot.
There is a example that is implemented with XYplot
(Embed the legend into the plot area of JFreeChart)
But, XYTitleAnnotation can be use only for XYplot.
...
0
votes
1answer
61 views
Highcharts: structure legend by subtitles
I was playing around with Highcharts the last days.
One thing, I couldn't find out, is if it is possible to include subtitles to the legend to structure the results.
In my example: ...
0
votes
1answer
124 views
Add pch symbol in R plot legend
I have one time series which is represented by a black line and one which is represented by a red curve. Then I have single points which have the pch symbol of 8 in R. These are stars. See the ...
0
votes
0answers
40 views
How to rotate a text in Sencha Touch Legend?
I have a legend with three string values ex:data 1 ,data 2, data 3. Is it possible to rotate the text inside sencha touch(2.1.1)legend using webkit transform or any other property ?? . . I tried my ...
4
votes
1answer
75 views
Use a for loop to create several bubble plots with different legend scales in R
I have been trying to make several bubble plots showing the frequency of observations (as a percentage) of several individuals in different sites. Some individuals were found in the same site, but not ...
0
votes
0answers
31 views
R: putting composite plotting characters into a legend
I want to plot to data sets on one canvas. To make one dataset stand out from the other I'll plot it twice using two different characters e.g. a circle around a dot.
Now I want to add this composite ...
1
vote
1answer
218 views
understanding default usage of `pylab.legend`
I am using pylab to produce this image:
where the legend is not what I wanted. The dots represent actual data points, the lines are made with polyfit. I would like the legend to contain either ten ...
1
vote
1answer
148 views
matplotlib: colorbars and it's text labels
I'd like to create a colorbar legend for a heatmap, such that the labels are in the center of each discrete color. Please see the example bellow (borrowed from here)
import matplotlib.pyplot as plt
...
1
vote
1answer
38 views
Error: (list) object cannot be coerced to type 'logical' adding legend
I am having trouble with a legend in R. I am working with survival data and I have two kaplan meir curves. I need to identify each one in my plot. I am using legend and this is what I have tried:
...
1
vote
1answer
42 views
plot nothing but the legend in matplotlib subplot
I have a bunch of subplots and one I want to contain a legend (there are the same number of handles and labels in each of the other subplots so I just want a master legend for all of them).
...
1
vote
2answers
92 views
Add legend with color and range in R
The following example code produces a color dot graph according to the values of a :
a <- sample(1:100)
rbPal <- colorRampPalette(c('red','blue'))
b <- rbPal(10)[as.numeric(cut(a,breaks = ...
-1
votes
1answer
83 views
horizontal legend at the bottom of graph in jqplot
I m able to get horizontal legend of jqplot graph using EnhancedLegendRenderer plugin.But i need horizontal legend at the bottom of the graph .Any suggestion?
1
vote
2answers
139 views
plot functions with filled point symbols and legend
I want to plot two functions in different colors and point styles with a corresponding legend, in plain R.
I have several questions:
I am using pch=21 and pch=22. My understanding is that they are ...



