Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
39 views

I'm analysing plotting styles in quantum computing papers (specifically Google Quantum AI publications) and trying to understand how the circuit diagrams and plots are created. Here's an example: The ...
Sechs's user avatar
  • 1
Advice
0 votes
2 replies
30 views

A synopsis of my code. import matplotlib.pyplot as plt import shapely.plotting from shapely.geometry import Polygon facing = 'north' shape = 'triangle' polygon = Polygon(((1, 17), (9, 1), (17,...
snow6oy's user avatar
  • 716
0 votes
1 answer
47 views

I made a "gauge" image using the following code: taux = 91 # Plot fig, ax = plt.subplots(figsize=(7.5,5), subplot_kw=dict(polar=True)) ax.set_theta_zero_location("W") ...
YamiOmar88's user avatar
  • 1,486
1 vote
1 answer
77 views

I've been trying to set equal data aspect ratios in matplotlib with ax.set_aspect('equal', 'datalim') (aka ax.axis('equal')), while preserving lower bounds/limits, aka anchoring one side of the data ...
casblaauw's user avatar
4 votes
1 answer
93 views

In Matplolib, it is possible to change the direction of the tick of 2D plots with tick_params parameters import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D import numpy as np fig ...
Thomas Bernat's user avatar
1 vote
2 answers
120 views

I have what might be a simple problem, but I’ve been stuck on it for several days. I have a dataset that looks like this: Exp Site Hole Core Type Sect A/W ... Instrument Instrument ...
Weiss's user avatar
  • 323
-2 votes
0 answers
72 views

I have a dataTable that is a list of lists. Every one of those lists is a list of different data. The first list containes the year, the second is data about 'poverty' for every one of those years, ...
user31641956's user avatar
1 vote
1 answer
57 views

I have a scatterplot in pyplot where the x-values are necessarily strings. Is there an easy way to limit the number of xticklabels that pyplot will show? I am not referring to specifying the xticks ...
Alex V.'s user avatar
  • 476
2 votes
1 answer
57 views

I'm doing some data visualisation for an experiment on near/far field diffraction. My goal is to essentially put several 2d plots in front of one another, pretty much identical to how this example in ...
KaasBaasKoning's user avatar
-1 votes
1 answer
64 views

SET UP I have multiple scripts that I execute with a .bat file, like so: cd C:\\path\\to\\my\\project\\directory echo Running script 1 "C:\\ProgramData\\miniforge3\\envs\\myenv\\python.exe" ...
bismo's user avatar
  • 1,645
0 votes
0 answers
81 views

When drawing satellite trajectories, the azimuth Angle jumps from 359° to 0°, causing the line segments to span the entire chart (break) instead of smoothly connecting. python version:3.11.9; ...
Aria's user avatar
  • 1
0 votes
1 answer
96 views

I wrote a piece of Python code to read different GPS observation files (.24o) and navigation files (.24p), and generate polar plots of satellite trajectories. The goal is that the RINEX file can be ...
Aria's user avatar
  • 1
3 votes
1 answer
105 views

I am trying to display a LaTeX-style equation in a Matplotlib plot using a custom font (Algerian). I want both the equation and the surrounding text to use the same upright (non-italic) font. Using ...
taiwan12's user avatar
  • 123
2 votes
1 answer
134 views

I am working on a small project and it is my first time using matplotlib, and I am struggling with how to make my bar graph look better with more inputs. The whole idea of the program is to read text ...
AP_'s user avatar
  • 45
Advice
0 votes
2 replies
124 views

On Window function - Wikipedia tapering functions are plotted using two different styles. One shows curve (samples) and the other Fourier transform (bins). I've prepared two tapering functions based ...
Juha P's user avatar
  • 337

15 30 50 per page
1
2 3 4 5
4859