I am creating an interface using Tkinter to plot signals from a database. I am using Python 3.8 and PyCharm 2021.2.1. The interface is supposed to open another
I have a csv file containing two columns. What I'd like to do is to plot a histogram based on these two columns. My code is as follows: data = pd.read_csv('data
I created a scatter plot using matplotlib but I am somehow unable to get the labels to center into the boxes within the colorbar.. This is the code I have so fa
Basically I have these arrays print(img_arr[0].shape)->(returns) (122218,) print(img_arr1[0].shape)->(returns) (125204,) so when I did
I have written a program where it takes a radius range(R to 5) and theta range(0 to 2pi). It converts the polar coordinates to Cartesian coordinates. Then I hav
I'm using Cartopy and I struggle with this issue free(): invalid size. It occurs when I set the map extent. extents = [-13, 44, 34, 63] # Europe proj = cartopy.
I'm trying to use a contour plot to visualize a multivariate normal distribution. import numpy as np from scipy.stats import multivariate_normal mean = (0, 0)
import matplotlib.pyplot as plt output ImportError Traceback (most recent call last) <ipython-input-7-a0d2faabd9e9> in <
z = {'A': [0.3618426, 0.36146951], 'B': [1.8908799, 1.904695], 'C': [2.1813462e+08, 2.1833622e+08], 'D': [0.89925492, 0.89953589], 'E': [2.6356747, 2.6317911],
I want to plot 2 adjacent figures sharing the y axis but I want to specify different ticks and labels to the left of the left figure and to the right of the rig
Trying to import matplotlib for Python 3.8.2 with from matplotlib import pyplot as plt I am using matplotlib version 3.2.2 Traceback (most recent call last):
I have a problem. I want to show the two highest countries of each category. But unfortunately I only get the below output. However, I would like the part to be
Though this question has already been asked, but I am unable to implement that. I don't know how get the xticks for each subplot and then replace it with the ne
Though this question has already been asked, but I am unable to implement that. I don't know how get the xticks for each subplot and then replace it with the ne
I'm trying to save a jpg in one of my files but I revice error 22 all the time. This is my code: buy_dir = r'C:/Users/Erik/Downloads/b
I have plotted two line plots. For Y-axis as the number of values are less, the Y-axis is clearly visible. However, for X-axis there are 365 values correspondin
The matplotlibrc sample file states that: ## The font.size property is the default font size for text, given in pts. ## 10 pt is the standard value. ## ## Note
I'm want to build a code, which make every day a mosaic image. I started like this: import pymodis from pymodis import convertmodis_gdal import glob #MOD09GA.
I am plotting a graph with 3 y axis, and it shows in the plot window of Spyder instead of saving correctly in a folder. The graph saved in a folder is blank. He
I am trying to select multiple points on a graph and move them. Right now I just have the singular mouse click event where I can click one point and move it, bu