numerical value of ICA components

Hello,
I performed ICA on MEG data:
ica = ICA(n_components=20)
ica.fit(raw_tsss_filt)

now, how can I extract the numerical value of ICA components?
(I should have 20 vectors each of the length of the recording duration)
Thank you!

  • MNE version: e.g. 1.6.0
  • operating system: Windows 10

You are looking for ica.get_sources(raw_tsss_fit).

thank you very much!