GithubHelp home page GithubHelp logo

Comments (4)

raphaelvallat avatar raphaelvallat commented on June 15, 2024

Hi @paulokanda,

Thanks for your message. You need to use np.squeeze(data) to ensure that time and data are both one-dimensional (by default data is 2D, i.e. data.shape = (n_channels, n_times)).

Hope this helps,
Thanks,
Raphael

from yasa.

paulokanda avatar paulokanda commented on June 15, 2024

I think that yasa is considering index as a value because

I reduced raw (from edf+) to one channel:

raw1 = raw.pick_channels(['F3'])
data = raw1.get_data() etc...

data.shape
(1, 80800)

raw_df1.head()

           time | F3

0 0 | 1.016440e-13
1 10 | -3.411143e-01
2 20 | -3.844158e-01
3 30 | -4.245883e-01
4 40 | -5.764858e-01

data
array([[ 1.01643954e-19, -3.41114305e-07, -3.84415789e-07, ...,
3.68912472e-06, 3.24150894e-06, -1.01643954e-19]])

error remains:

ValueError: x and y must have same first dimension, but have shapes (80800,) and (1, 80800)

It doesnot happen when plotting with other methods in mne.

Is it an yasa bug? Please what I'm missing? Thanks in advance.

from yasa.

raphaelvallat avatar raphaelvallat commented on June 15, 2024

Hi @paulokanda,

This is not a YASA bug since your code does not include any YASA functions. Rather, the issue is that when you use raw.get_data() with a single channel in MNE, you still end up with a two-dimensional array, even though you have only one channel. The output dimension of the array is (n_channels, n_samples). However, the time vector that we use in the matplotlib plt.plot() function is one-dimensional. The following should work:

plt.plot(time, np.squeeze(data))

Thanks,
Raphael

from yasa.

paulokanda avatar paulokanda commented on June 15, 2024

Thank you for your time and clear explanation.

from yasa.

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.