Display-Lab / knowledge-base

Precision Feedback Knowledge Base
https://display-lab.github.io/knowledge-base/
Creative Commons Attribution Share Alike 4.0 International
1 stars 1 forks source link

Have a standard way to represent moderator triple in causal pathways #202

Closed icejag closed 8 months ago

icejag commented 8 months ago

Problem: The moderator triple in social better causal pathway is in a single line

"Moderators": [
      {
        "@value": "Habituation, regulatory fit, gap size"
      }

The moderator triple in social worse causal pathway is in multiple lines:

      {
        "@value": "regulatory fit"
      },
      {
        "@value": "gap size"
      },
      {
        "@value": "message recency"
      },
      {
        "@value": "message delivery count"
      } 

For improving causal path way- the moderator triple must not logically contain the gap size. But the current triple consist the gap size as it's property. This needs to be changed.

      {
        "@value": "regulatory fit"
      },
      {
        "@value": "gap size"
      },
      {
        "@value": "message recency"
      },
      {
        "@value": "message delivery count"
      }
    ]

Solution: A consensus must be reached to represent the moderator triple in the causal pathways and process needs to be created to ensure correct moderator is connected to the correct causal pathway.