Hey so I’m very new to analytics and this is probably a very nooby question but how can I compare data?
For example I have code that does that sends a “level_complete” event which takes the level id as well as an additional parameter “reloads” which should tell me how many times the player took to complete that level. Essentially
AnalyticsEvent.LevelComplete("Level01", new Dictionary<string, object>() {{"Reloads", reloadCount}});
The data goes through but the thing that is confusing me in the data explorer is how do I match up reloads to that specific level? It seems to treat both values separate from one another.
I basically just want to see how many attempts it takes a user to complete a level.