3
votes
3answers
31 views

Python Matplotlib: plot with 2-dimensional arguments : how to specify options?

I am plotting several curves as follow: import numpy as np import matplotlib.pyplot as plt plt.plot(x, y) where x and y are 2-dimensional (say N x 2 for the sake of this example). Now I would ...
6
votes
1answer
59 views

Colorize parts of the title in a plot using R

Is it possible to colorize parts af the title in a plot that is generated using R? x = 1:10 y = 1:10 plot(x, y, main="title (slope=1)") In this plot I'd like to change the color of slope=1 to red.
0
votes
1answer
13 views

Controlling the color of objects rendered using the surf function

I have 500 spheres. I want to draw some of them in blue and the rest in red (at the same time). I've used the surf function to draw these spheres. If NodeS(j)==1, the sphere should be blue, otherwise ...
2
votes
2answers
69 views

Are there good predefined color sequences for different data in one plot?

A while ago, I asked How to change Lattice graphics default groups colors?, and got a helpful response from BenBarnes. This allowed me to define more than 7 cycling colors for different data in the ...
0
votes
1answer
34 views

Matlab gplot extra customly defined colors

I have a question regarding Matlab's function gplot. I would like to call gplot several times in a for-loop to plot several graphs/paths in the same figure. However, I would like to use more colors ...
1
vote
3answers
44 views

How to color plot in R

I have a two dimensional plot. Every point on it has some value (say, y) ranging from 0 to 1. I want to show these values on a plot using colors. For example, if any point has a value less than 0.25 ...
1
vote
0answers
46 views

dotplot with R, editing colors, handling with duplicate values

I created a dotplot with R with the following source code: dotplot(mass_movement ~ quantity, data=mm_strat, groups=stratigraphy, cex=1.5, pch=19) The data looks like this: quantity | mass_movement ...
1
vote
1answer
38 views

Remove text Backgroundcolor in matlab plot

I have added some text in my plot. But I want to move its background to be as all other background which is gray. I know the following: 'Backgroundcolor',[0.7 0.7 0.7] However, [0.7 0.7 0.7] gives ...
0
votes
1answer
29 views

Plotting MATLAB values in two different colors

Anyway, I wish to plot two column vectors, filled with random numbers with no negative values in them, on a 2D plot(x and y). The 'x-vector' I can leave as it is, but with the 'y vector', I wish to ...
0
votes
1answer
54 views

How to get heat colors with plot3d in scilab?

Hi this may seem to be a simple question but I am having a hard time understanding how to use the colors in a plot3d. That is what I have: // x, y and z are matrix 4 by 100 myColors = ...
0
votes
1answer
38 views

Defining color of 3D points plot based on distance in R

Suppose I generate some three-dimensional Gaussian samples and I plot these with plot3D. I want to color the points depending on their distance to the center of the cloud. By this I mean that I want ...
0
votes
2answers
87 views

How to make a scatterplot in R with category-specific colored text labels?

I am still pretty new to R and plotting. I have several 2D matrices that are variations of matrix <- matrix(c(0,1,2,3,4,4,3,2,1,0), 5, 2) They are all associated with a single data frame of two ...
0
votes
1answer
99 views

Retaining colors while plotting multiple lines in a loop (Matlab)

I'm plotting a changing number of line trajectories on a sequence of images. I want the lines to be of different colors (as much as possible), and I want the colors to be retained throughout the ...
0
votes
2answers
130 views

pcolor in scatter plot matlab

I have a large matrix DAT(50000+,42). I am plotting 2 rows of this matrix on the x and y axes, and want the plot points to vary in color due to the value of a separate row. Can anybody advise? pcolor ...
8
votes
1answer
163 views

have plot points coloured on a spectrum in R

I have a list of points that I want to play on a graph in R. In a bid to have 3 levels of information (X axis, Y axis and another) I want to plot the points on a graph and colour them on a scale for ...
2
votes
1answer
69 views

Using multiple colors in matplotlib plot

I have a numpy array of 2D data points (x,y), which are classified into three categories (0,1,2). a = array([[ 1, 2, 3, 4, 5, 6, 7, 8 ], [ 9, 8, 7, 6, 5, 4, 3, 2 ]]) class = array([0, 2, ...
1
vote
1answer
107 views

colouring plot by factor using custom colours in r [duplicate]

I am trying to make a scatter plot coloured by factor. I am using the following code: data<-iris plot(data$Sepal.Length, data$Sepal.Width, col=data$Species) Is there anyway I can colour by the ...
0
votes
1answer
87 views

show.groups argument in ordiellipse() to use different colours and line types for groups

I am trying to produce a plot like the one shown at the bottom of this question: Adding ellipses to a principal component analysis (PCA) plot. However, I am neither familiar with ggplot nor with ...
1
vote
1answer
251 views

ggplot2: How to specify multiple fill colors for points that are connected by lines of different colors

I am new to ggplot2. I would like to create a line plot that has points on them where the points are filled with different colors than the lines (see the plot below). Suppose the dataset I am ...
0
votes
2answers
81 views

Plot different entries of a table with different colors in Mathematica

In Mathematica, I have a table in which each entry of the table is a curve in 3 dimensions. I want to assign different colors to different curves, but I don't know how to do it. My current command ...
2
votes
2answers
172 views

R use list of values as color scale

I'd like to represent the value of a variable as a color of a dot in a scatter in R. x <- rnorm(100) + 5 y <- rnorm(100) + 5 plot(x, y) Here, I'd like to use a variable as input for the ...
0
votes
4answers
1k views

Plot multiple lines (data series) each with unique color in R

I am fairly new to R and I have the following queries : I am trying to generate a plot in R which has multiple lines (data series). Each of these lines is a category and I want it to have a unique ...
0
votes
5answers
112 views

R: Coloring plots

I have some data that I want to plot (e.g. plot(x,y)) but I have some criteria that I want to color by depending on the values in vector z which looks like c(1, 0, 1, 1, 1, 1, 0, NA ,0 ,0, .....) etc. ...
1
vote
1answer
514 views

Filled contour lines from a plot with color in R

I have the following code that will generate a plot with several contour lines. Now I would like to fill those contours or at least one (for example the 25% contour lines) with a specific color. I ...
1
vote
0answers
148 views

Matlab surfc colormap shading

How can I create a 3D plot that has a smooth color gradient, from the lowest value to the highest value. I have tried changing color map, but the only choice that works is the 'default', which looks ...
1
vote
1answer
87 views

Add colour to plot in R

I am working in R with the package smacof. I have a on which I would like to see the points 1 to 10 in Red, and the others leave black. I made it with the following commands: ...
0
votes
1answer
131 views

How to specify a graph to color specific points?

I'm graphing a matrix in 3d using the rgl package in R and was wondering how I can color the points of two important groups. I know the row number of the matrix I am trying to identify with a color. ...
1
vote
1answer
151 views

How can I modify the colors on MATLAB's colorbar

I am plotting the azimuth and elevation of some satellites, where the color of each trajectory represents the S4 index, from low (blue) to high (red). I would like however, to be able to format the ...
3
votes
2answers
559 views

I want to color code a satellite trajectory plot using Matlab

I am creating a plot in Matlab that maps the azimuth and elevation of several GPS satellites over time. Below is an example of an image of the plotted GPS satellite trajectories. However, I also ...
1
vote
2answers
198 views

MATLAB - Plotting lines in different colours according to comparible z value

I am using some MATLAB code to track particles in a fluid solution via video capture. All the particles tracked are stored in an array of cells (tr) with each cell entry being a different particle ...
0
votes
3answers
104 views

Make plot with varied line color for specific y values on MATLAB

I want to make a plot such that for all y values greater than some y0, the plot will be shown in red. For all other values, it will be shown in blue. Is this possible in MATLAB? This would help draw ...
0
votes
1answer
130 views

Markerfacecolor ignoring saturation value (python, matplotlib)

The matplotlib spec says: In addition, you can specify colors in many weird and wonderful ways, including full names ('green'), hex strings ('#008000'), RGB or RGBA tuples ((0,1,0,1)) ... ...
1
vote
1answer
547 views

display of data in meaningful color in Matlab scatter plots

I have about 9000 x,y locations, each with a value, say between -1 and 1. Let's call it a temperature. I would like to plot each point with red/blue proportional to the point's temperature. I can ...
0
votes
1answer
450 views

Matlab: How to smooth colors of matrix in plot3( ) function?

I am using plot3 to plot a matrix such that the resultant figure shows different colors for each vector of that matrix: plot3(Grid.x1(:,:),Grid.x2(:,:),phi(:,:)) How can I smooth the coloring of ...
1
vote
1answer
537 views

bar3 colour depending on zdata

When using the bar3 function, the colours of the bars depend on the column or row the data is in. Example: data = peaks(20); bar3(data); view(-135,30) How can I make it that the colour of each ...
3
votes
2answers
255 views

How to set a color by default in R for all plot.default, plot or lines calls

to simplify my daily R interactions, I'd like to set up default colors for all my plots. For example, let's say I want to have all plots made with red lines (like in gnuplot...:-) ) So far, here is a ...
1
vote
1answer
149 views

Columns with same colors using barplot() in R

I have some problems with colors in my barplot. I have a 4x4 matrix "allmat": A B C D L 0.10260 0.0215700 3.017e-01 0.06917 F 0.09840 ...
2
votes
1answer
94 views

How to fill black color in an image drawn by joining segments?

How to fill in color in an area of image drawn by joining segments. plot.new() R<-.8 r<-.2 angle<-45 angle1<-45*0.0174532925 angle2<-(angle-15)*0.0174532925 ...
2
votes
1answer
754 views

plot3 line color based on value

I have a set of data that contains 3d Cartesian points (x, y, z) and a time stamp. I would like to plot this data as a connected line in 3d space with the line colour changing based on the time stamp ...
3
votes
1answer
1k views

Plot with conditional colors based on values in R

I want to plot a graph with different colors based on values. I wrote the below code, np_graph <- data.frame(C1 = -5:5, C2 = -5:5) x=np_graph2$C1 y=np_graph2$C2 plot(x,y,xlab="PC1",ylab="PC2") ...
1
vote
2answers
162 views

matlab plot graph color

I am working on Matlab Plot. I have two problems. 1) After plotting, when user selects data point color of that data point should change 2) I need to get the x and y values of that data point Any ...
0
votes
1answer
430 views

surf() in Matlab showing only two colors instead of multiple colors

I am using following lines of code to plot: nthTheta=1; gammaSurf=reshape(gamma(:,nthTheta,:),size(gamma,1),size(gamma,3)); figure [spatial_lag,temporal_lag]=meshgrid(distance,4:4:12); ...
0
votes
1answer
269 views

Matlab - plot two pcolors on top of each other, with different colormaps

I'm plotting two pcolors on top of each other (using the m_map algorithm m_pcolor). The reason for this is that the second pcolor has transparency in it, and so shows the pcolor underneath. The ...
0
votes
1answer
447 views

Different colorbar in same plot

A simple question. I have a figure. I need to hold it, and put some dots on it using scatter plot. Figure has a colormap(jet). I want these new dots to be black. I tried using caxis. This is what I ...
-3
votes
2answers
307 views

How do I add a transparent arrow that changes color between two points to a plot in R?

Can I use the arrow() function in R to plot a transparent arrow between two points that changes color? For example, an arrow that starts out as red at one point, and gradually changes to blue at the ...
3
votes
2answers
2k views

2d color gradient plot in R

I want to produce a 2d color gradient rectangle like the ones in the picture below on the right hand side. How can I do this in R? Using colorRamp or RColorBrewer or other functions/packages I can ...
1
vote
2answers
6k 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, ...
2
votes
1answer
124 views

How do i color a plot using non-numerical values using matplotlib?

i am trying to plot values using matplotlib and i have several different classes of points to plot. Example Number class x y 1 wood 0.2 9.4 3 glass 7.6 4.6 How ...
0
votes
0answers
209 views

Python Matplotlib Surface Colourmap Not Displaying

I'm trying to plot a z-value-coloured surface from a set of 3D data-points. I've gridded the data-points and I can display a surface with static colours (if I replace 'cmap=...' with 'color="b"' I can ...
0
votes
4answers
458 views

scatter plot specifying color and labelling axis in r

I have following data and plot: pos <- rep(1:2000, 20) xv =c(rep(1:20, each = 2000)) # colrs <- unique(xv) colrs <- xv # edits yv =rnorm(2000*20, 0.5, 0.1) xv = lapply(unique(xv), ...

1 2