1
vote
1answer
17 views

List of ints to list of strings in MATLAB

I have a list of integers [0, 10, 20, 30, ...] And I want to use them as a legend in a plot. My understanding is that I need to give the command legend('0','10','20','30', ...) So how do I get ...
0
votes
2answers
24 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
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 ...
1
vote
1answer
77 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 ...
3
votes
2answers
86 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
1answer
31 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
3answers
63 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, ...
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
20 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
135 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 ...
4
votes
1answer
77 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
2answers
145 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 ...
0
votes
1answer
67 views

legend on each point with pylab.plot

I would like to have each exact value as a legend above each point representing that value on my graph. Any idea of how I can do it? Thanks enter code here
1
vote
2answers
73 views

How to put colour legend into plot in Matlab?

I am drawing a picture in Matlab as follows. I have tried many ways to put nice colour legend at the end of the picture, each colour represents a variable, e.g. 'inflation', 'interest rate', 'exchange ...
3
votes
2answers
317 views

Advanced legend in R: Plot

This is a following up question of this question: R plot: new line in bquote But now I have it in a legend and this seems to change the things. I tried the following: test<-c(10:1) ...
0
votes
1answer
123 views

Legend with color filling and shading lines in Base R

In my plot I have two intersecting polygons, one colored and one with shading lines. In the legend I would like the two polygons and the intersection array represented correctly. Here is what I ...
2
votes
3answers
110 views

R barplot legend in center

I have a barplot which looks like as: and I want to add a legend somewhere in the bolded rectangle, I have already tried par(xpd=TRUE) and setting the margins for the fourth bar plot but for some ...
2
votes
2answers
50 views

Legend gives too much data in matlab

How can I restrict my legend in Matlab? So far I'm plotting a graph with code like so: figure; hold on; plot(log(X),7.35,'ro',7.35,log(Y),'bo'); axis([7.3 7.7 7.3 7.7]); set(gca,'xtick',[7:0.1:7.7]) ...
4
votes
2answers
97 views

Having subsections in a legend of a plot in R?

I generate the following legend: legend( "bottomleft" , legend=c( expression(bold("Long:" ~ (w==10^2 ~ ";" ~ h==10^5))) , expression(q[c] == 0.00 ~ ";" ~ beta == 0) , expression(q[c] ...
2
votes
1answer
53 views

Legend box width not correct when using par

I have the problem , that my legend is too large, my code: par(mfrow=c(1,2)) hist(alvsloss,breaks = 100, freq=F,main="Histogramm, density curve (gaussian kernel) \n and fitted normal distribution of ...
0
votes
1answer
97 views

Add table (aligned text blocks) to plot in R

I'd like to add a small table (for example as a legend) to a plot in R. I think of something like: t <- wantedTableMethod( row("param1", "param2", "param3", "param4") , row(value11, value12, ...
2
votes
1answer
89 views

Transform numbers with exponents to plotmath commands for beautiful legends in R

I'm trying to generate a beautiful legend in R plots. I have a factor=1e-5, that should appear nicely formatted in the legend. I found a nice function in the package sfsmisc, that transforms numbers ...
1
vote
2answers
166 views

Use sub-/superscript and special characters in legend texts of R plots

I generate a plot for multiple datasets. Each of the datasets should get it's own legend, which might contain greek letters, plotmath symbols or sub and superscrition. I'd like to generate the ...
1
vote
1answer
105 views

Add legend or background image to Igraph 0.6 (for python) plot

I plot a graph with python 2.7 by using Igraph 0.6 with the Cairo extention for plotting. All good but I would like to add a legend each time I plot. If I could only add a background image to the ...
2
votes
1answer
71 views

how to make plot where curves may overlap?

I'm trying to make a plot similar to this one Because there are curves that completely overlap each other, I like how he puts legends right on the curve, so he can plot so many curves without ...
1
vote
1answer
805 views

Legend in a bar plot in Matlab

How can I plot a legend in a bar plot in Matlab? Here is the code: Y = [1.5056 0.72983 3.4530 3.2900 1.4839 12.9 ]; n = length(Y); h = bar(Y); colormap(summer(n)); grid on l = cell(1,6); l{1}='L'; ...
2
votes
2answers
48 views

How do I plot values from a struct as different lines so I can control their color Matlab?

What I want: Different coloured points on a plot and to have the points in a legend with their respective colours. I tried this: I have created a struct which contains x, y values of points. With ...
0
votes
0answers
110 views

Add Checkbox to legend of a jqplot line graph

I have been using jqplot to plot the line graph in a site I am working on currently. I love how it give me an option to toggle a line series by clicking on the series name in its legend. However, my ...
2
votes
3answers
117 views

Push plot legend up slightly in R

I have an ECDF plot I've created with R and it has a legend in the bottom right hand corner. The problem I'm having is that the faint grey dashed horizontal line that the ECDF plot places at 0.0 is ...
1
vote
1answer
181 views

Matplotlib: text color code in the legend instead of a line

On certain LCD monitors, the color of the horizontal lines in the legend is hard to tell apart. (See the image attached). So instead of drawing a line in the legend, is it possible to just color ...
1
vote
1answer
90 views

Legend outside the plot

do you know how can I put the Legend outside the plot area? (Both in code and in xaml) Thank you for your help! cis
1
vote
1answer
104 views

Passing Python List of Symbol Values to R Legend Call Through rpy2

I am running into a problem trying to pass a Python list to an R legend call for a plot using rpy2. I generate a list of text names and their corresponding symbols from an existing dictionary as: ...
6
votes
2answers
814 views

How to show legend for only a specific subset of curves in the plotting?

t = 0 : 0.01 : 2 * pi; s = sin(t); c = cos(t); m = -sin(t); hold on; plot(t, s, 'r'); plot(t, c, 'b'); plot(t, m, 'g'); hold off; legend('', 'cosine', ''); There are several curves in my ...
4
votes
2answers
126 views

Linebreak in R plot legend behavior

I have a linebreak in a legend in R and my problem is that the graphic looks not as expected. My minimal example is as follows: plot(1) legendLabel<-c("t\nu ","tu","wh","trr\nni") ...
1
vote
2answers
139 views

How do i make a color spectrum legend which represents my z values?

I have managed to use the grey scale command to make a 3D scatter plot with the third dimension representing a color gradient. I have hit a wall when trying to produce the legend that coincides with ...
0
votes
1answer
96 views

Holding legend between a number of plots

I plot with different data sets and all plots are on the same axes. The issue I am facing here is adding the legend and when i plot the next plot the legend of the first gets overwritten our ...
-3
votes
1answer
84 views

Adding Legends to a radarchart [closed]

By following this thread I have created a radar chart. Can anyone suggest me how to add a legend to this graph?
0
votes
1answer
101 views

Generic plot with legend

What is the best way to implement a generic plot method, given that i have 2 series + legends? The problem is that i want to provide some nice defaults for the colors and legends, but the user should ...
1
vote
2answers
320 views

R: legend expression how to add comma between two values and how to supress scientific notation

I'm trying to format the legend in my plot, but I have to use expression() because of greek and superscripts. However, when I want to display r^2 = 0.45, P<0.0001, I get r^2 = 0.45 P<1e-04, ...
2
votes
3answers
142 views

Automatically generate legend for graphs in r?

Is it somehow possible, to automatically generate a legend in R? One thing that really annoys me, is redundant information, that I have to enter to show the legend (for example the line colour,...) ...
1
vote
1answer
359 views

Change the size of the text in legend according to the length of the legend vector in the graph

I have to draw a 20 plots and horizontally place a legends in each plots. I gave the following command for the first plot: plot(x=1:4,y=1:4) legend("bottom",legend = ...
3
votes
2answers
222 views

Removing lines through symbols in legend in r

How can I remove the lines that intersect the symbols in an r legend? Have looked through ?legend but can't seem to find an answer.. plot.new() legend("top",ncol=1,c("Mound reef (M)","Spur and ...
1
vote
2answers
3k views

Matlab: several graphs in 1 loop, each iteration adds a line on every figure

Trying to engineer the following in Matlab: ** loop start; y(:,i) = function of x; z(:,i) = function of x; plot(x,y(:,i)) on figure 1, hold all; plot(x,z(:,i)) on figure 2, hold all; ...
1
vote
2answers
444 views

Creating a legend for a dendrogram with coloured leaves in r

I have coloured the leaves in a dendrogram as follows require(graphics) dm <- hclust(dist(USArrests[1:5,]), "ave") ...
1
vote
1answer
3k views

How do I add two legends to a single plot in MATLAB?

I'd like to add two legends to a plot in MATLAB. How can I do this?
0
votes
1answer
254 views

Opaque Legend Box

I was wondering how I could go about creating an opaque legend box in R for my plots? I've tried using bg="grey", but the lines on the graph are still covering the legend.
2
votes
2answers
84 views

Inputing '\' before a character in a string Matlab

I'm trying to insert a '\' into a string array before each '_' in the string. The reason I am trying to do this is to keep the format of the sheetnames I pull from an xls file when i use the ...
1
vote
2answers
5k views

Setting line colors in legend of MATLAB plot?

I am using the plotgauss2d function of BNT to visualize how the response of a 2D Gaussian node changes when evidence is observed elsewhere in the net. eng = jtree_inf_engine(bnet); evidence = cell(1, ...
0
votes
1answer
83 views

R Functions Halted by Irrelevant Legend Error Message

I've written a function that contains multiple subfunctions. The subfunctions are all exactly like the the one below: Lfunction <- function(mydata, mydata.hex) { mydata.Lest <- Lest(mydata) ...

1 2