May 24, 2017 -- SienaSemanticsSurvey -- Code Breakdown -- Cell #11, #12, #13, #14, & #15

Cell #11
"Bar Graph for Career Interest in Science"

introduces and defines FSurveyParts --> this will take in certain columns from the data that is relevant to the topic of Career Interest in science from the surveys --> has to have student data columns explicitly stated to know which ones correspond to this topic as done in Cell #12

This cell incorporates the user's input of gender from the previous cell from the options "Boy", "Girl", or "All" and also outlines that if there was no selection choice, the code will default to gather "All" data

Based on the title of this cell, should a graph be generated?
_________________________________________________________________________________
Cell #12
"Bar Graph for Stem Semantics" -- 2014

This involves survey results from 2014 --> and based on the survey from this year, the corresponding data was found to be included in columns ranging from 8-33 but being Python starts from 0 are shifted to range from 7-32. From this the size of the vector can be determined using "vecSize=SemanticsS14Q.shape[1]"

Then, using this data from the 2014 Semantics Survey, the previously outlined table using the name, mean, and SEM, can be filled in accordingly using the FData function defined in Cell #9.

When run, this cell will generate the table where each of the questions asked is listed and its corresponding calculations of average and SEM of student responses are listed to 6-7 sig figs.
_________________________________________________________________________________
Cell #13
"Bar Graph for STEM Semantics" -- 2015

This involves survey results from 2015 --> and based on the survey from this year, the corresponding data was found to be included in columns ranging from 8-33 but being Python starts from 0 are shifted to range from 7-32. From this the size of the vector can be determined using "vecSize=SemanticsS15Q.shape[1]"

Then, using this data from the 2015 Semantics Survey, the previously outlined table using the name, mean, and SEM, can be filled in accordingly using the FData function defined in Cell #9.

When run, this cell will generate the table where each of the questions asked is listed and its corresponding calculations of average and SEM of student responses are listed to 6-7 sig figs.
_________________________________________________________________________________
Cell #14
"Bar Graph for STEM Semantics" -- 2016

This involves survey results from 2016 --> and based on the survey from this year, the corresponding data was found to be included in columns ranging from 5-30 but being Python starts from 0 are shifted to range from 4-29. From this the size of the vector can be determined using "vecSize=SemanticsS14Q.shape[1]"

Then, using this data from the 2016 Semantics Survey, the previously outlined table using the name, mean, and SEM, can be filled in accordingly using the FData function defined in Cell #9.

When run, this cell will generate the table where each of the questions asked is listed and its corresponding calculations of average and SEM of student responses are listed to 6-7 sig figs.
_________________________________________________________________________________
Cell #15
"Bar Graph for STEM Semantics" -- 2017

This involves survey results from 2017 --> and based on the survey from this year, the corresponding data was found to be included in columns ranging from 6-31 but being Python starts from 0 are shifted to range from 5-30. From this the size of the vector can be determined using "vecSize=SemanticsS14Q.shape[1]"

Then, using this data from the 2017 Semantics Survey, the previously outlined table using the name, mean, and SEM, can be filled in accordingly using the FData function defined in Cell #9.

When run, this cell will generate the table where each of the questions asked is listed and its corresponding calculations of average and SEM of student responses are listed to 6-7 sig figs.

Comments

Popular posts from this blog

6/14/17 Notes

6/06/17 Notes (formatting code and searching for a specific person)

May 22, 2017 -- SienaSemanticsSurvey -- Code Breakdown -- Cell #8