python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Make ticks with values longer (Matplotlib)
This is my code for plotting
import matplotlib.pyplot as plt
nb = [days_data[d]["Netzeinspeisung"] for d in days_data]
days = [d for d in days_data]
plt.plot(days, nb, marker="+")
...

Pythonwolf
Votes: 0
Answers: 1
How to use multiple times xticks in a plot figure
I wanted to use xticks function 2 times on the x axis for the 2 plots but it doesn't work. I wanted to know a way to use the xticks tool to display my second axis on the top :
my_xticks2 = ['524K','57...
haswellrefresh
Votes: 0
Answers: 0
Matlab Anova changing "Test number" on x axis
Using the built in Matlab function to run ANOVA on some data. I have groups of tests that I want to look at independently of the other tests, i.e. I want to run ANOVA on tests 1, 2 & 3, then 4, 5 ...
user2587726
Votes: 0
Answers: 1
How to customise date range in time series matplotlib?
I have a data for two years and I am using below code to create a time series graph:
import matplotlib.pyplot as plt
df = pd.read_csv("Sample.csv")
# Draw Plot
def plot_df(df, x, y, title=&...

Piyush Ghasiya
Votes: 0
Answers: 0