The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
15 views

Colorbar shinks scatter plot

Hopefully a simple fix.. I have a colorbar plotted to the right of my image. Doing so shrinks my scatter plot to the left; however, I would like to keep the scatter as close to 1:1 as possible as the ...
0
votes
1answer
25 views

How do I change matplotlib colorbar tick marks to facing outwards?

I've noticed on the matplotlib examples gallery that all of their plots featuring vertical colorbars have tick marks on them that face inward, (i.e. From the edge of the bar into the colored region ...
0
votes
1answer
26 views

How to add marker to matlab colorbar?

I want to add a tarker/special tick mark by specific values in my matlab colorbars. For example, lets say I have a colorbar scale from -20 to 60 and my critical value is 37.53, how can I add a marker ...
2
votes
1answer
70 views

Matplotlib plots (pcolormesh and colorbar) shift with respect to their axes when using rasterized=True

I use matplotlib pcolormesh plots with colorbars, apply rasterization to the plots and colorbars in order to reduce the file size and save the figure as a PDF file. Thereby I noticed, that after ...
0
votes
2answers
79 views

MATLAB: Show colorbar of a grayscale image in a figure containing a RGB image

Suppose we have two images: 1) RGB Image: % initialize RGB image: rgbIm = zeros(100, 100, 3); rgbIm(20:80, 20:80, 1) = 1; 2) Grayscale Image: % initialize grayscale image: grayIm = zeros(100); ...
3
votes
1answer
111 views

How would one add a colorbar to this example?

In this example the color is correlative to the radius of each bar. How would one add a colorbar to this plot? My code mimics a "rose diagram" projection which is essentially a bar chart on a polar ...
0
votes
1answer
17 views

Why isn't my colorbar appearing in this ImageGrid plot?

I've managed to make a set of subplots using hist2d and ImageGrid with the code below: from mpl_toolkits.axes_grid1 import ImageGrid fig = figure(figsize(20, 60)) grid = ImageGrid(fig, 111, ...
4
votes
2answers
38 views

Matplotlib ColorbarBase: delete color separators

I'd like to delete the back line-separators (dividers?) in the drawn colormap, using ColorbarBase: cm = get_cmap('RdBu') Ncol = 501 cccol = cm(1.*arange(Ncol)/Ncol) cax = ...
1
vote
2answers
126 views

How to set colorbar labels

I have some points in a 'jet' colormap. The points have a coefficient that can go from 0 to 1, but usually they dont cover all the range, e.g 0.75-0.9. When I plot those points I colour them so 0.75 ...
1
vote
2answers
60 views

Colorbar is not showing the colors I want

I have a similar question than the one in this post. I have a grayscale image and I plot points on it. Fro plotting the points I use colormap('jet') but as I want the image to be grayscale, after ...
1
vote
1answer
138 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 ...
0
votes
0answers
96 views

Define color axis scale in R (equivalent to Matlab's caxis?)

I'm trying to plot an ESRI Grid as a raster image of a surface. I've figured out how to make the plot, but not how to control R's color scale. # open necessary libraries library("raster", ...
0
votes
1answer
128 views

How to shift the colorbar position to right in matplotlib?

I draw a scatter chart as below : The code is : sc = plt.scatter(x, y, marker='o', s=size_r, c=clr, vmin=lb, vmax=ub, cmap=mycm, alpha=0.65) cbar = plt.colorbar(sc, shrink=0.9) And I want to ...
0
votes
1answer
113 views

How to shift position of colorbar in 3d plot

I'm displaying a 3D scatterplot, but label on the z-axis is getting overlapped by the color bar. How can I shift the color bar a desired number of pixels to the right or left?
0
votes
1answer
322 views

Python matplotlib decrease size of colorbar labels

I need your help! I have a plotting code which is the following: fig = plt.figure() ax1 = fig.add_subplot(111) imax1 = ax1.imshow(data,interpolation = 'nearest', origin = 'lower',cmap=cm.jet)#plot ...
1
vote
1answer
29 views

Matplotlib - Title upon one `colobar`

I need to add some text just upon one colobar to have a title for it. Is it possible ? Here is one starting code coming from this post. from matplotlib.pylab import * import matplotlib.cm as cm ...
0
votes
1answer
97 views

Matplotlib - Same padding as the one used by a `colorbar`

Is there a way to keep the same padding as the one used by a colorbar without seeing any colobar ? Why ? Indeed, this will allow me to do one visual effect when passing from one plot without the ...
2
votes
1answer
96 views

Matplotlib - Pick up one color associated to one value in a `colorbar`

I would like to draw rectangles associated to some values (X_i). Each of this rectangles will have a fill color depending to its value value X_i. Is-it possible to use one colorbar and also to know ...
0
votes
1answer
88 views

Gnuplot Dividing the color bar in different sectors

I would like to have a color bar divided into 5 colors. One color from 0 to 95, another until 97, then 99, 99.8 and 100. What I have done so far is: set palette maxcolors 5 set palette defined ( 0 ...
1
vote
1answer
163 views

Set the color steps in the GnuPlot color bar

I would like to have a color bar divided into 5 colors. One color from 0 to 20, another until 40, and so on until 100. What I have done so far is: set palette maxcolors 5 But this doesn't set the ...
0
votes
1answer
211 views

colorbar matplotlib colors from red to blue

Following on from all my other annoying hard to understand posts I have a list: [0,1,4,3,2,4,2,1,0] I want each of them to have a colour using cmap = ...
1
vote
1answer
76 views

how to find colour of colorbar matplotlib

I have created a colorbar which has a variety of colours in it. I have set it to a pick event. When I click on the colorbar, on a particular colour segment I want it to return the colour. I tired ...
-1
votes
1answer
123 views

Python: how to change font in a colorbar?

Let's suppose I would like to have ticklabel font in colorbar different from the rest of the plot. How would I do this?
6
votes
1answer
292 views

Display values from a matrix in a custom colormap (Matlab)

I want to visualize a matrix based on the values its contain. I have one cell, which contains 11 matrices, each matrix has 4 columns which are x,y,z (the coordinate) and its values. I want to ...
-1
votes
3answers
154 views

Having line color vary with data index for line graph in matplotlib?

So I have a 2D array of data producing a plot of many timeseries on the same axes. At the moment, the colour of each line just cycles through and doesn't mean anything. I want to somehow map the ...
1
vote
1answer
131 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 ...
2
votes
0answers
81 views

Color map and color bar of the overlaid index image on a gray scale background image?

I use following example codes to overlay an index image on a background image (in the example below it is RGB but for my problem the background is a gray sacle image). Then my questions are: How to ...
3
votes
1answer
2k views

Matplotlib 2 Subplots, 1 Colorbar

I've spent entirely too long researching how to get two subplots to share the same y-axis with a single colorbar shared between the two in Matplotlib. What was happening was that when I called the ...
0
votes
0answers
96 views

2D plot with gradient color bar

I have a set of data exported from a simulation and want to get a graphical plot with color map for it. My data set is something like this : x [nm] y [nm] Ex -40.4762 ...
1
vote
3answers
154 views

Asking for a Qt colorbar control & a chart control

color bar and line chart I would like to create or leverage two Qt controls like these above. One is a colorbar with pinches on it. The other is a chart with points on the line, while we can ...
1
vote
2answers
164 views

Define dimensions of colorbar in matlab

I create the following figure: Naming = {'Name1','Name2','Name3','Name4','Name5','Name6'}; for i = 1:length(Naming); dat = 1+(30-1).*rand(365,5); time = ...
2
votes
1answer
614 views

How to move the color bar of a heatmap in gnuplot?

I'm plotting some heatmaps in gnuplot. It has the graph and a colorbar in the right side of the graph. But I wish to change it's position in the plot. Does anybody know the command to change the ...
2
votes
1answer
940 views

How to combine a custom color range with colorbar in MATLAB?

I'd like to have a surface plot like the one below, but with a proper colorbar. This is my code: [X,Y,Z] = peaks(30); [maxval dummy] = max(Z(:)); [minval dummy] = min(Z(:)); crange = 1.5; % ...
0
votes
1answer
368 views

matplotlib basemap colorbar text position

I have a problem about the text position of the colorbar. I'm using matplotlib Basemap to make some plots, and I the use colorbar() function. Now I need to put my colorbar on the left side of my ...
0
votes
0answers
54 views

Duplicated colorbar in wxpython

I am trying to plot the colorbar associated with the data map in wxpython. Problem is, a duplicated colorbar generated every time when I load and plot a new data file, as the photo shown below. How do ...
2
votes
1answer
272 views

Plotting discrete, lumpy 2D matplotlib plots with logarithmic colouring

FINAL EDIT (Partial Solution): After a lot of tinkering I've been able to accomplish what I want. It isn't exactly a fast bit of code as it's plotting over 17,000 separate bar plots. Solution X = ...
1
vote
2answers
3k views

how to set the range in the colorbar manually?

I have a wide range of values and while plotting as a scatter(x,y,z), the colorbar showing the z axis shows a wide range of values, now I am not interested in the lower range values. Is there any ...
0
votes
2answers
298 views

Set colorbar ranges in 3d graph in matlab

I would like to create a three dimensional surface using this: >> a=X a = Columns 1 through 8 0 50 100 150 200 250 300 350 ...
2
votes
2answers
581 views

getting a matplotlib colorbar tick outside data limits for use with boundaries keyword

I am trying to use a colorbar to label discrete, coded values plotted using imshow. I can achieve the colorbar that I want using the boundaries and values keywords, which makes the maximum value of ...
1
vote
1answer
370 views

Matplotlib: fixed boundaries on a colorbar of a polar contour plot

As it says in the title, I am trying to fix the values of the colorbar (vmin=-3 and vmax=+3) of a polar contour plot. I am going to generate several dozens of such graphs, and the auto scaling of the ...
3
votes
2answers
834 views

Matplotlib : quiver and imshow superimposed, how can I set two colorbars?

I have a figure that consists of an image displayed by imshow(), a contour and a vector field set by quiver(). I have colored the vector field based on another scalar quantity. On the right of my ...
1
vote
1answer
87 views

ggplot sequence patterns

I am trying to plot a sequence of coloured small squares representing different types of activities. For example, in the following data frame, type represents the type of activity and count represent ...
1
vote
1answer
252 views

Colorbar for two contour plots

I have two contour plots but I want the colorbar to apply to both. My code so far is shown. How can I create a single colorbar that can be applied to both plots? import numpy as np import ...
1
vote
1answer
2k views

Python matplotlib change default color for values exceeding colorbar range

When filling a grid with color such as when using contourf in pyplot, I need to find a way to change the color that pyplot uses to fill data that exceed the specified range of the colorbar. I wish to ...
0
votes
2answers
752 views

Create a tailored colorbar in matlab

I have to create a map to show how far o how close some values are from a range and give them colors in consequence. Meanwhile, values that are within that range should have another different color. ...
0
votes
2answers
2k views

Plot multiple y-axis AND colorbar in matplotlib

I am trying to produce a scatter plot that has two different y-axes and also a colorbar. Here is the pseudo-code used: #!/usr/bin/python import matplotlib.pyplot as plt from matplotlib import cm ...
0
votes
1answer
248 views

MATLAB colorbar ticks change after saving

I'm changing the ticks and tick-labels of my colorbar .. however, after saving the figure (*.fig) and re-opening the figure, It looks like MATLAB moved the ticks elsewhere . has anyone encountered ...
1
vote
1answer
526 views

How to plot a colormap?

I have a map of Europe in Matlab, and I have some values, which change region by region. How can I plot a contour colormap? The label colours depend on these values, and I want to show the ...
1
vote
0answers
401 views

Python Matplotlib pyplot colorbar indices

I want to plot a bivariate normal distribution and have been looking through the Matplotlib's pylab examples for guidance. However, for some reason, I have trouble reproducing one of its graphs: ...
5
votes
2answers
625 views

Creating a colour bar for a plot made with plt.fill

I'm new to Python (was an IDL user before hand) so I hope that I'm asking this in an understandable way. I've been trying to create a polar plot with x number of bins where the data in the bin is ...

1 2