Skip to content
Snippets Groups Projects
  1. May 19, 2023
  2. May 15, 2023
  3. May 12, 2023
  4. May 11, 2023
  5. Mar 17, 2023
  6. Mar 16, 2023
  7. Mar 08, 2023
  8. Jan 02, 2023
  9. Dec 15, 2022
  10. Dec 06, 2022
  11. Dec 05, 2022
  12. Nov 07, 2022
  13. Sep 21, 2022
  14. Sep 15, 2022
  15. Sep 13, 2022
  16. Sep 08, 2022
  17. Sep 06, 2022
  18. Apr 15, 2022
  19. Apr 13, 2022
  20. Mar 24, 2022
  21. Jan 03, 2022
  22. Dec 20, 2021
  23. Dec 13, 2021
  24. Dec 10, 2021
  25. Nov 09, 2021
  26. Sep 24, 2021
  27. Sep 09, 2021
  28. Sep 08, 2021
  29. Aug 17, 2021
  30. Jul 30, 2021
  31. Jul 21, 2021
  32. Jun 09, 2021
  33. May 26, 2021
    • Stéphane Adjemian's avatar
      Add new comparison methods. · 507ec822
      Stéphane Adjemian authored
      Closes #4.
      
      *Example*
      
      >> a = dseries(randn(4,5),'2000Q1')
      
      a is a dseries object:
      
             | Variable_1 | Variable_2 | Variable_3 | Variable_4 | Variable_5
      2000Q1 | 2.4245     | -1.036     | -0.87587   | -0.57001   | -1.6989
      2000Q2 | 0.9594     | 1.8779     | 0.31995    | -1.0257    | 0.6076
      2000Q3 | -0.31577   | 0.9407     | -0.55829   | -0.90875   | -0.1178
      2000Q4 | 0.42862    | 0.78735    | -0.31143   | -0.2099    | 0.69916
      
      >> a.Variable_3>0
      
      ans =
      
        4x1 logical array
      
         0
         1
         0
         0
      
      >> a(a.Variable_3>0)
      
      ans is a dseries object:
      
             | Variable_1 | Variable_2 | Variable_3 | Variable_4 | Variable_5
      2000Q2 | 0.9594     | 1.8779     | 0.31995    | -1.0257    | 0.6076
      507ec822
Loading