Skip to content
Snippets Groups Projects
  1. Jul 13, 2022
  2. Jul 08, 2022
  3. Jul 07, 2022
  4. Jul 03, 2022
  5. Jul 02, 2022
  6. Jul 01, 2022
    • Arin Wongprommoon's avatar
      tweak!(core): Change default window size of detrend · 83a04a68
      Arin Wongprommoon authored
      WHY IS THIS CHANGE NEEDED?:
      - Sliding window detrending imposes oscillations onto time series.
        The period of these oscillations is determined by the size of the
        window.
      - I discovered this by varying the window size on my analysis of real data.
      
      HOW DOES THE CHANGE SOLVE THE PROBLEM?:
      - Re-defined the window size to match the period of a cell division
        cycle/yeast metabolic cycle under favourable conditions, assuming
        image sampling every 5 minutes (most common setting).  Detrend process
        is used mainly in pre-processing to study biological oscillations --
        the process removes long-term trends that may obscure these
        oscillations.
      - Changing the default parameter value does not solve the problem per
        se, but if the window size corresponds to the oscillation frequency,
        it will only reinforce these oscillations.
      
      WHAT SIDE EFFECTS DOES THIS CHANGE HAVE?:
      - Will change behaviour of skeletons scripts that rely on detrend,
        especially when no parameter value is defined.  Users have to be aware
        of the new default value and may have to adjust the parameter value to
        suit their data.
      
      REFERENCES:
      - Issue #22
      83a04a68
  7. Jun 30, 2022
    • Arin Wongprommoon's avatar
      feat!(core): Change behaviour of detrend process · f192bb9e
      Arin Wongprommoon authored
      WHY IS THIS CHANGE NEEDED?:
      - process currently first normalises by dividing by mean -- not strictly
        part of detrending
      - process divides normalised time series by moving average -- difficult
        to justify as poor evidence for signal's trend being multiplicative to
        phenomenon of interest
      
      HOW DOES THE CHANGE SOLVE THE PROBLEM?:
      - remove normalising step
      - subtract moving average instead of dividing
      
      WHAT SIDE EFFECTS DOES THIS CHANGE HAVE?:
      - change is not backwards compatible
      - does not affect aliby, agora, or the rest of postprocessor as none
        depend on detrend
      - will affect skeletons/arin as modules & scripts rely on detrending as
        part of time series pre-processing -- but qualitatively little changes
      
      EVIDENCE THAT COMMIT WORKS:
      - testing on skeletons/arin/strain report script and inspecting output
        plots -- still makes sense
      
      REFERENCES:
      - issue #22
      f192bb9e
  8. Jun 29, 2022
  9. Jun 20, 2022
  10. Jun 17, 2022
    • Arin Wongprommoon's avatar
      [routines/heatamp] Incorporates unit scaling into x-axis ticks · ed2a126e
      Arin Wongprommoon authored
      Heatmap added x-ticks based on the time points, not absolute time.
      
      When a DataFrame is passed into matplotlib.imshow, the Axes no longer
      cares about the column names.  We want the plot to take into account the
      sampling period AND the unit scaling if the user specifies one.
      
      I copied over the method I implemented for boxplot.py -- it essentially
      'tricks' matplotlib by redefining the labels rather than change the
      time-axis values (see
      https://stackoverflow.com/questions/10171618/changing-plot-scale-by-a-factor-in-matplotlib).
      matplotlib's xscale does not support simple linear re-scaling; in any
      case, having time-axis values does not make sense for imshow.
      
      This commit addresses issue #20.
      ed2a126e
    • Arin Wongprommoon's avatar
    • Arin Wongprommoon's avatar
      [routine/boxplot] Unit scaling argument · 9df680ef
      Arin Wongprommoon authored
      Repurpose sampling_period for unit scaling, as in
      b6575f25
      
      This commit addresses issue #20.
      9df680ef
    • Arin Wongprommoon's avatar
    • Arin Wongprommoon's avatar
      [routines] Unit scaling argument · b6575f25
      Arin Wongprommoon authored
      Specifying a sampling period via the sampling_period argument duplicated
      multiplying the horizontal axes by a scaling factor.
      
      This is because recent changes to postprocessor (see last paragraph of
      commit) makes the columns of DataFrames show absolute time units (e.g. [0, 5,
      10, 15...] if the images were taken every 5 minutes).  Previously,
      columns showed time points (e.g. [0, 1, 2, 3...]).  All routines relied
      on column labels to define the horizontal axis.  This issue would
      have been addressed more timely if the commit in question had a more
      informative description; 'add tiniterval property' tells me nothing and
      does not inform me that it affects the column labels.
      
      These recent changes mean that the sampling_period argument is no longer
      necessary.  However, instead of deleting this argument, I've decided to
      repurpose it for unit scaling, e.g. from minutes to hours.
      Operationally, nothing has changed, but the meaning of the argument has
      changed, and I've updated the docstrings accordingly.
      
      This commit may affect horizontal axes of plots affected; users should
      inspect the axes carefully, especially if the source data relies on
      postprocessor.grouper.
      
      This bug was likely caused by 17e13b59
      on 2022-06-16 14:21.  It is unclear from the commit message, but I
      suspect that this commit attempted to incorporate the image sampling
      interval into defining the DataFrame columns produced by postprocessor.
      This commit addresses issue #20.
      b6575f25
  11. Jun 16, 2022
    • Alán Muñoz's avatar
      Merge branch 'hotfix-issue-024' into 'master' · 9ed1ec14
      Alán Muñoz authored
      [routines/heatmap] Refactor: change how x-ticks are defined
      
      Closes #19
      
      See merge request postprocessor!14
      9ed1ec14
    • Arin Wongprommoon's avatar
      [routines/heatmap] Refactor: change how x-ticks are defined · 8e16964d
      Arin Wongprommoon authored
      When the user defines xtick_step and sampling_period so that
      sampling_period is not divisible by xtick_step, an error is shown.
      Specifically:
      
          int(np.where(time_axis == label)[0].item()) for label in xticklabels
      ValueError: can only convert an array of size 1 to a Python scalar
      
      The routine assumed that all instances of label (line 66) can be found
      in time_axis (defined in line 61).  This is not true when
      sampling_period is not divisible by xtick_step -- as an example:
      
      Suppose time_axis is: [0, 1, 2, 3, 4, 5, 6, 7]
      And xtick_step is 0.6.
      xtick_min is thus defined as 0 and xtick_max is thus defined as 7.2, as
      expected.
      xticklabels is then defined as [0, 0.6, 1.2, 1.8, ... 7.2]
      In the list comprehension that defines self.xticks, label first acquires
      the value of 0.  This results in no errors as time_axis contains a 0.
      However, when label then acquires the value of 0.6, the ValueError is
      returned because time_axis does not contain a 0.6.
      
      Fortunately, Axes.xaxis.set_major_locator() does all this for me, so I
      scrapped the original method of defining horizontal axis for this.  I
      had originally written the lines to define the horizontal axis when I
      didn't know that set_major_locator() existed, and tried to define the
      x-ticks manually.
      
      These changes should not affect the behaviour of heatmap apart from
      cases that cause the error.
      
      This commit fixes issue #19.
      8e16964d
    • pswain's avatar
      added tintervals · d446886f
      pswain authored
      d446886f
    • Alán Muñoz's avatar
      blackify update · 77ab8e65
      Alán Muñoz authored
      77ab8e65
    • Alán Muñoz's avatar
      add tinterval property · 17e13b59
      Alán Muñoz authored
      17e13b59
  12. May 27, 2022
  13. May 26, 2022
  14. May 24, 2022
  15. May 23, 2022
  16. May 16, 2022
  17. May 13, 2022
Loading