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)
when run "python setup.py install", I meet "error:[WinError 32] The process cannot access the file because it is being used by another process"
I want to install Third-party library "uncertainty-baselines" in my conda virtual environment "uncertainty_bl".I want to run "Batchensemble" example.
C:\Users\70987\Deskt...
Yingdong Wang
Votes: 0
Answers: 0
Function that calculates uncertainty
As you may or may not know, the formula for the uncertainty in a variable defined by some function is given by:
.
I want to create a python function that does this for me. This is what I currently ha...

Markus Hamre
Votes: 0
Answers: 2
Pandas+Uncertainties producing AttributeError: type object 'dtype' has no attribute 'kind'
I want to use Pandas + Uncertainties. I am getting a strange error, below a MWE:
from uncertainties import ufloat
import pandas
number_with_uncertainty = ufloat(2,1)
df = pandas.DataFrame({'a': [num...
user171780
Votes: 0
Answers: 1