Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How do we find out whether people clicked "Yes" or "No" on the feedback widget? #70

Closed
sarahmaddox opened this issue Apr 15, 2019 · 12 comments
Assignees

Comments

@sarahmaddox
Copy link
Contributor

This PR added the feedback widget:
#1

Please would you add some usage docs for interpreting the results of the widget?
(I've found the feedback event in Google Analytics for my site, but I can't figure out whether people clicked "Yes" or "No" on the feedback widget. At first I thought everyone is just clicking yes, because the only event I see is "helpful" - there's no "not helpful" event. But now 2 months have passed and there's still no "not helpful" event so I'm beginning to think there must be some other way of reading the input.)

@sarahmaddox
Copy link
Contributor Author

/cc @kaycebasques

@jaredbhatti
Copy link

jaredbhatti commented Apr 15, 2019 via email

@jaredbhatti
Copy link

jaredbhatti commented Apr 15, 2019 via email

@LisaFC
Copy link
Collaborator

LisaFC commented Apr 30, 2019

We should document this somewhere in https://serene-roentgen-10fbaa.netlify.com/docs/

...but where? New page on User Feedback?

@kaycebasques
Copy link
Contributor

You can indeed calculate the exact "yes" and "no" counts using the method described above, but I think that's a bit of a special case. The average value column gives you a breakdown of the scores.

vals

55% of respondents clicked "yes" for /web/updates/2019/01/devtools, 64% clicked "yes" for /web/tools/chrome-devtools/sources, and so on.

It might help to understand what happens when a user clicks "yes" or "no". When you click "yes" an event is sent to GA with the following data:

{
  category: 'Helpful'
  label: window.location.pathname
  value: 1
}

And when a user clicks "no":

{
  category: 'Helpful'
  label: window.location.pathname
  value: 0
}

So all of the responses get collected under the Helpful category. And the average value tells you the percentage because the only values that get submitted are 0 or 1.

I can write a bona fide guide on all of this stuff, but I agree that there's currently not a good place to put this file on the Docsy documentation site as it currently stands.

@kaycebasques
Copy link
Contributor

I think /docs/adding-content/feedback would be a good enough location for now. LMK if you want me to crank this out.

@LisaFC
Copy link
Collaborator

LisaFC commented May 1, 2019

That would be absolutely great if you could! The current temporary repo for the final docs is:
https://github.com/LisaFC/docsysite

@LisaFC
Copy link
Collaborator

LisaFC commented May 31, 2019

Ping @kaycebasques ?

@kaycebasques
Copy link
Contributor

I've been completely swamped. I'll work on it on Wednesday.

@LisaFC
Copy link
Collaborator

LisaFC commented Jun 4, 2019

Thanks!!

@kaycebasques
Copy link
Contributor

PR is here: LisaFC/docsysite#14

@LisaFC
Copy link
Collaborator

LisaFC commented Jun 13, 2019

Thanks!

@LisaFC LisaFC closed this as completed Jun 13, 2019
NickAnderegg pushed a commit to Zymbit-Docs/zymdocsy that referenced this issue Oct 25, 2021
…/markdownlint-cli-0.29.0

Bump markdownlint-cli from 0.26.0 to 0.29.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants