Uploaded image for project: 'Beam'
  1. Beam
  2. BEAM-12541

fillna(value=DataFrame/Series) does not correctly fill values

Details

    • Bug
    • Status: Resolved
    • P2
    • Resolution: Fixed
    • None
    • 2.32.0
    • dsl-dataframe
    • None

    Description

      A new doctest was added in 1.3.0 that verifies fillna with a DataFrame value:

      df = pd.DataFrame([[np.nan, 2, np.nan, 0],
                         [3, 4, np.nan, 1],
                         [np.nan, np.nan, np.nan, 5],
                         [np.nan, 3, np.nan, 4]],
                        columns=list("ABCD"))
      df2 = pd.DataFrame(np.zeros((4, 4)), columns=list("ABCE"))
      df.fillna(df2)
          A   B   C   D
      0   0.0 2.0 0.0 0
      1   3.0 4.0 0.0 1
      2   0.0 0.0 0.0 5
      3   0.0 3.0 0.0 4
      

      Unfortunately, we fail this test. The root cause is that we don't require Index partitioning when fillna is called with a DataFrame/Series value.

      Attachments

        Issue Links

          Activity

            People

              bhulette Brian Hulette
              bhulette Brian Hulette
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Time Tracking

                  Estimated:
                  Original Estimate - Not Specified
                  Not Specified
                  Remaining:
                  Remaining Estimate - 0h
                  0h
                  Logged:
                  Time Spent - 2h 50m
                  2h 50m