python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Interpretation of boxplot
I am trying to create a box plot with matplotlib library of python. The code is given below.
fig, ax = plt.subplots(figsize=(8, 6))
bp = ax.boxplot([corr_df['bi'], corr_df['ndsi'], corr_df['dbsi'], co...
Badal
Votes: 0
Answers: 1
How to generate random normal distribution without numpy? (Google interview)
So I have a data science interview at Google, and I'm trying to prepare. One of the questions I see a lot (on Glassdoor) from people who have interviewed there before has been: "Write code to g...
Kelsey
Votes: 0
Answers: 1
when running the descriptive statistics code stby I get the error code "Column `common` doesn't exist"
Below is the code I am using but I keep getting an error with the area "stats= "common""
(key.stat <- stby(data = nudging[,c("SCR SCEN", "Groups")],
...
Tamara D. Reid
Votes: 0
Answers: 1
how to calculate covariance matrix of 2d array in C using GSL library
I have 2D array :
21 6 160 110 3.90 2.62 16.46 0 1 4 4
21 6 160 110 3.9 2.875 17.02 0 1 4 4
22.8 4 108 93 3.85 2.320 18.61 1 1 4 1
21.4 6 258 110 3.08 3.215 19.44 1 0 3 1
18.7 8 360 175 3.15 3.44 17.0...
MOVIES FX
Votes: 0
Answers: 1