I make a scatterplot using d3.js where the points are arranged by their name and an accompanying number.
The data that is plotted would look like this:
name, group, number
"AB", "A", 0.5
"ABC", "A", 10.0
"BC", "B", 3.0
"BCD", "B", …
I have my jqplot with log scale axis which is look like this:
And here is my x and y axis setting for my jqplot:
axes : {
xaxis : {
renderer : $j.jqplot.LogAxisRenderer,
ticks : [0.1, 1, 10,…
I'm using multiple axes and I set one axis to use a max. If it is the only axis shown then the max works ok, just what I want. But if another axis is also shown the first axis max can change to be a bigger value. How can I get it to show its max,…
I am creating a GUI in MATLAB using GUIDE. I have several axes, and in one of them I want to draw a boxplot. My problem is that after drawing the boxplot, the size of the axes changes, and it overlaps with some of my other figures.
To replicate this…
Is there a way to include character values on the axes when plotting continuous data with ggplot2? I have censored data such as:
x y Freq
1 -3 16 3
2 -2 12 4
3 0 10 6
4 2 7 7
5 2 4 3
The last row of data are right censored.…
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;
** loop end;
add title, legend, etc for figure…
I have a matlab gui that shall contain 4 plots. The first plot shall be updated if a different file is selected in a list. the other 3 shall only be visible (and be calculated) on request.
However I fail to make plots 2-4 invisible after they have…
I'm looking at the custom projection example in the matplotlib gallery -- I'm trying to modify it to plot only the southern hemisphere. I have adjusted the necessary [-pi/2,pi/2] limits to [-pi/2,0]. Now I've been looking at:
def…
Say I have set up the following function f[a,b,c] which I wish to plot while varying a and b
f[a_,b_,c_]:=a b c Exp[a b]
Manipulate[
Plot
[
f[a,b,c],
{c,0,1},
PlotRange->{{0,0.05},Automatic}
],
{a,0,1},
{b,0,1}
]
Is it possible to have the…
I'm creating a .NET library which generates data for a 3D world, but it doesn't do any of the rendering itself. It falls on XNA, DirectX, OpenGL, etc to render it based on the data (the end coder does this). I want to provide the world data in a…
Perhaps I've made the title more complicated than the question, but here goes...!
I have some angular data, contiguous in the x-y plane, that straddle the 360 => 0 degree line - ie, 358,359,0,1,2....
If I were plotting these and setting:
…
I am creating a 3D line plot in plotly in R and I cannot stop the plot funciton from shortening the axes labels.
library(plotly)
my_data <- read_excel("filedir\\filename")
## Create Axis titles and margins
axx <- list(
title = "Year-Month"
…
If I have a pyplot figure with more than one "axes" (as they call them) and there is a textbox in one of them, when writing some special sequences of characters (e.g. *2) I get a warning that states the following:
MatplotlibDeprecationWarning:…
Is it possible to create a plot object that is ignored by the Axes autoscaler?
I often need to add vertical lines, or shade a region of a plot to show the desired range of data (as a frame of reference for the viewer), but then I have to set the…
I would like to use the axes handle returned by an external function to place the plot objects from that axes within my chosen subplot located in another figure. The format of the external function can't be modified.
The below code is a dummy…