So far the integration was quite smooth and now I do have a question about how to do analytic jobs.
The purpose: Its the puzzle game, and I’m interested in how many moves the level has been finished. Lets say, overall between the All Users segment, what is min, max and average for the Level1.
Whenever the level has been finished I call this piece of code:
UnityAnalytics.CustomEvent("LevelFinished", new Dictionary<string, object>
{
{ "level", int.Parse(MadLevel.currentLevelName) },
{"numberOfMoves",_numberOfMoves},});
So, I pass two parameter here, the level - which is actual level nubmer. and the numberOfMoves - which is how many moves have been made for particular level.
To view number of moves by level, you’ll need to make a couple changes to your custom event structure. Instead of having a generic level event, create a custom event specific to a level number (ie: Level1, Level2, Level3) and include “numberOfMoves” as a parameter.
If you go to Data Explorer, select add Custom Metric and you’ll see options to add Level1, Level2, etc. If you click on View Parameters, you’ll be able to see averages for the “numberOfMoves” parameter. For more information on how to visualize your parameters (“NumberofMoves”) read this forum post.
We don’t currently support min and max for numeric parameters, but if this is important to you, please provide your feedback and vote here.
Thanks. I knew about that custom thing. Though, it is not Data Explorer->Custom Metric… It’s Data Explorer->Custom Events and I can’t choose there levels with combination of moves. Only one of it, either level or numberOfMoves.
The data is there, and it’s possible to get what I want and even better, you simply don’t have those “queries” to make it. I see 2 solutions over here:
Access to the RAW data. So i can import it to the Excel and create whatever kind of statistics that I want.
Ability to create custom queries, independent of those which you have. (this I think, would solve almost more then half of statistics requests)
Hi @DalerHakimov - In regards to your suggestions, I’m excited to tell you that raw data export is in development. We’ll announce it in the Forum once it’s available.
Also I just noticed you added your custom queries suggestion to the Feedback site - awesome!
Hi, sorry to hijack this thread but I’m trying to basically do the same thing. Just switched my custom events over to level specific like you recommended:
However when I go to view the event in the Data Explorer, it’s not populating the Parameter list and even when I manually fill it in I still get no data. It does come through the validator properly though. Any ideas?