Open woutccc opened 1 year ago
@noelgolding Hi Noel, it was you how was volunteering last Tuesday for helping our with this issue right? What do you need from me to get this moved forward? Note I have created just 1 survey in Mailchimp and no invitation email or jourbney yet (need to figure out how, but dont expect this to be too difficult)
@Felienne is there a reason why I cant assign myself (and Noel) to this issue?
Yes, you have to be members of the org first! I will invite you tomorrow
is there a reason why I cant assign myself (and Noel) to this issue?
@woutccc
What do you need from me to get this moved forward?
You will need to create an email template with the survey link, or embedded survey. I don't think you will need to create a journey or welcome email for this survey.
I will create a new campaign via the mailchimp api, each time the survey is to be sent to a new group
I will need the mailchimp api credentials and email template id. we can sync up on those items outside of this conversation.
@Felienne we may need to update the db schema to either have a join table or new field to identify the users we have already sent a survey to so we don't spam them.
Yes, you have to be members of the org first! I will invite you tomorrow
I have assigned you now @woutccc! (Noel was already there)
@Felienne based on the db schema, I don't think we have the necessary data to formulate the queries for scenarios 2 and 3. Please let me know if there is an updated schema that exposes the level for a given class and whether or not the course was completed for a given class.
@Felienne based on the db schema, I don't think we have the necessary data to formulate the queries for scenarios 2 and 3. Please let me know if there is an updated schema that exposes the level for a given class and whether or not the course was completed for a given class.
Hi @noelgolding!
Firstly, I am not 100% sure the schema is up to date (maybe @jpelay can chip in?). But I think based on the information we have, we can do something for scenarios 2 and 3:
We can look at the class, fetch all students in the class, and then fetch their programs and see if the students reached a certain level (and for performance reasons, we can store that max_level on the class so we don't have to do that expensive query multiple times).
The question is what "reaching level 3" means. One student? All students? The majority of students? But that is a definition question and not a technical limitation. I am inclined to say something like 80%?
Similarly for TEACHER_DropOut_3, the question is what it means to "follow for a whole year". Some schools might just have , say, 8 weeks for programming courses and might fill them with Hedy entirely. Is that a drop out or not? They might plan to do the same next year. So maybe for scenario 3 we want something like more than a year of no activity? That means that they did not start at the same time (But for now, I think we can do these manually and should focus first on 1 and 2).
Hope this helps!
would we want to limit scenarios 2 and 3 to teachers with just 1 class? or do we want to find any class that matches the criteria?
would we want to limit scenarios 2 and 3 to teachers with just 1 class? or do we want to find any class that matches the criteria?
Maybe all classes? Like this:
TEACHER_DropOut_2: Account created, created one or more class but stopped (-> no activity for 2 weeks in any class before having any student in any class reach level 3)?
But of course we can also take it "gradual" and first start to find teachers with 1 class! that stopped.
I am not 100% sure the schema is up to date (maybe @jpelay can chip in?)
It most certainly isn't! It's fairly outdated by this point.
For scenario 2, as you say, it depends on the amount of students who reached level 3! Which we can of course do looking at their programs, or also look at their quiz scores right? Like we do for 'Highest level reached' in the view class
@Felienne @noelgolding we might want to start off with only the first 2 "dropout groups". With the 2nd one like Felienne stated: "Account created, created one or more class but stopped (-> no activity for 2 weeks in any class before having any student in any class reach level 3)". Ultimately we want to have more insight in a) Teacher interested in Hedy but did not manage to start at all. WHY b) Teacher started with Hedy but did not manage to follow through. WHY
We can adjust the trigger parameters along the way, when/if the survey insights point us into other directions...
Other question, before I set up the email(s) in Mailchimp: should I translate survey (and email) into Dutch first?
@Felienne @noelgolding we might want to start off with only the first 2 "dropout groups". With the 2nd one like Felienne stated: "Account created, created one or more class but stopped (-> no activity for 2 weeks in any class before having any student in any class reach level 3)". Ultimately we want to have more insight in a) Teacher interested in Hedy but did not manage to start at all. WHY b) Teacher started with Hedy but did not manage to follow through. WHY
We can adjust the trigger parameters along the way, when/if the survey insights point us into other directions...
Yes lovely idea to just start with a simple scenario! Let's discuss tonight who will pick this up!
For scenario 2, as you say, it depends on the amount of students who reached level 3! Which we can of course do looking at their programs, or also look at their quiz scores right? Like we do for 'Highest level reached' in the view class
I would say: let's do the simplest thing first: less than x% (50?) have reached level 3. Later we can also take other things into account.
Other question, before I set up the email(s) in Mailchimp: should I translate survey (and email) into Dutch first?
That would be lovely! We have a large part of Dutch teachers in the database.
I think it is clear now that @noelgolding will not come back to pick this up, this would fit with the community management tasks of @hasan-sh (but no rush!)
TEACHER_DropOut_1: Account created but never created a class. Trigger: date of account creation + 14 days (of inactivity)
TEACHER_DropOut_2: Account created, created a class but stopped (no activity for 2 weeks) before reaching level 3. Trigger: date of reaching level 3 + 21 days (of inactivity)
TEACHER_DropOut_3: Account created, created a class, followed through for a full school year and then stopped Trigger: date of ending course with class + 90 days (of inactivity)