Git Product home page Git Product logo

Comments (8)

arokem avatar arokem commented on June 27, 2024

And:

a.var()
Out[72]: 2171875000000.0 s

from nitime.

ivanov avatar ivanov commented on June 27, 2024

Yea, I specifically didn't implement prod - since the units
will end up being seconds**(len(a)) - should we make it so this
function return a "Not implemented" error, or something like
that?

The same should probably apply to mul(self, val) when val is
another TimeArray.

from nitime.

ivanov avatar ivanov commented on June 27, 2024

var on the other hand should be fixed, i'll have a PR shortly

from nitime.

ivanov avatar ivanov commented on June 27, 2024

hmm, looks like it won't be so quick - it's a bit hairy - since my first stab at it makes us lose precision:

In [130]: a = nitime.timeseries.TimeArray([1,2,3]); a.var()
Out[130]: 0.66666666666700003 s

In [131]: b = np.array([1.,2.,3.]); b.var()
Out[131]: 0.66666666666666662966

where a.var is

def var(self, *args, **kwargs):
    tmp = np.array(self, np.float) / self._conversion_factor
    ret = TimeArray(tmp.var(*args,**kwargs), time_unit=self.time_unit)
    return ret

from nitime.

ivanov avatar ivanov commented on June 27, 2024

hmm, more info:

In [156]: (np.array(a, dtype=np.float)/a._conversion_factor).var()
Out[156]: 0.66666666666666662966

actually does what we want, but when we try to make it into a TimeArray, we get back

In [157]: nitime.timeseries.TimeArray((np.array(a, dtype=np.float)/a._conversion_factor).var(),time_unit='s')
Out[157]: 0.66666666666700003 s

so maybe the implementation i have is fine

from nitime.

ivanov avatar ivanov commented on June 27, 2024

more thinking, though, sorry for using this like a chat, a.var() would have units of s**2, so maybe we shouldn't implement it on the TimeArray, unless we want to dive further in to the units universe, (whereas a.std() is in seconds, so that's fine))

from nitime.

arokem avatar arokem commented on June 27, 2024

Good point about the units. I think that it would be OK to raise a NotImplementedError for cases in which we get 'strange' units, maybe even explicitly mentioning that the units would undergo strange mutations through this transformation. I don't really see an obvious use-case for prod or var anyway.

from nitime.

arokem avatar arokem commented on June 27, 2024

This is resolved in:

dcd6bc2

from nitime.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.