Hallo everyone, I need some help for my Bachelor Thesis, I want to plot with bar graph but I have anytime the same problem " class
member function not found " Before I did the bar graph I have done fisher exact test for one handed hypothesis checking. I need a bar graph which shows the percentage of coming to the walk (Teilnahme) for both groups Persönliche Gruppe(treatment) and Formelle Gruppe(control). The first numeric variable show in which group they are and the second if they come to the walk or not. Someone have an Idea how I can solve this problem ? That could be very helpful for me. Thank you.
Here is my Data
----------------------- copy starting from the next line -----------------------
------------------ copy up to and including the previous line ------------------
member function not found " Before I did the bar graph I have done fisher exact test for one handed hypothesis checking. I need a bar graph which shows the percentage of coming to the walk (Teilnahme) for both groups Persönliche Gruppe(treatment) and Formelle Gruppe(control). The first numeric variable show in which group they are and the second if they come to the walk or not. Someone have an Idea how I can solve this problem ? That could be very helpful for me. Thank you.
Here is my Data
----------------------- copy starting from the next line -----------------------
Code:
* Example generated by -dataex-. For more info, type help dataex clear input byte ID str3 Mitarbeiter str20 Treatment byte(Dummy Teilnahme) 1 "K01" "Persönliche Gruppe " 1 0 2 "H02" "Persönliche Gruppe " 1 0 3 "G03" "Persönliche Gruppe " 1 0 4 "D04" "Persönliche Gruppe " 1 0 5 "H05" "Persönliche Gruppe " 1 0 6 "M06" "Persönliche Gruppe " 1 0 7 "A07" "Persönliche Gruppe " 1 0 8 "L08" "Persönliche Gruppe " 1 0 9 "N09" "Persönliche Gruppe " 1 0 10 "P10" "Persönliche Gruppe " 1 0 11 "D11" "Persönliche Gruppe " 1 0 12 "K12" "Persönliche Gruppe " 1 0 13 "P13" "Persönliche Gruppe " 1 1 14 "B14" "Persönliche Gruppe " 1 0 15 "H15" "Persönliche Gruppe " 1 0 16 "F16" "Persönliche Gruppe " 1 0 17 "E17" "Persönliche Gruppe " 1 0 18 "B18" "Persönliche Gruppe " 1 0 19 "R19" "Persönliche Gruppe " 1 0 20 "K20" "Persönliche Gruppe " 1 0 21 "W21" "Persönliche Gruppe " 1 0 22 "L22" "Persönliche Gruppe " 1 0 23 "M23" "Persönliche Gruppe " 1 0 24 "T24" "Persönliche Gruppe " 1 0 25 "W25" "Formelle Gruppe" 0 0 26 "W26" "Formelle Gruppe" 0 0 27 "B27" "Formelle Gruppe" 0 0 28 "C28" "Formelle Gruppe" 0 0 29 "M29" "Formelle Gruppe" 0 0 30 "S30" "Formelle Gruppe" 0 0 31 "A31" "Formelle Gruppe" 0 0 32 "D32" "Formelle Gruppe" 0 0 33 "B33" "Formelle Gruppe" 0 0 34 "S34" "Formelle Gruppe" 0 0 35 "O35" "Formelle Gruppe" 0 0 36 "M36" "Formelle Gruppe" 0 0 37 "H37" "Formelle Gruppe" 0 0 38 "G38" "Formelle Gruppe" 0 0 39 "B39" "Formelle Gruppe" 0 1 40 "K40" "Formelle Gruppe" 0 0 41 "S41" "Formelle Gruppe" 0 0 42 "H42" "Formelle Gruppe" 0 0 43 "F43" "Formelle Gruppe" 0 0 44 "W44" "Formelle Gruppe" 0 0 45 "D45" "Formelle Gruppe" 0 0 46 "K46" "Formelle Gruppe" 0 0 47 "M47" "Formelle Gruppe" 0 0 48 "B48" "Formelle Gruppe" 0 0 end
Comment