|
|
|
|
|
|
Survey Results
The following represents aggregations of data collected from users who have completed at least one page of the EV Pioneer Survey. Since not every participant has answered every questions, the total number of responses to each question varies.
For a version of this page that does not require Java, go here |
|
|
Your Car -- How Many Vehicles Owned? |
|
|
select numbercarsowned, count(numbercarsowned) Total from survey1page2
group by numbercarsowned
order by count(numbercarsowned) desc;
|
|
How Many EV's Owned? |
|
|
select numberevsowned, count(numberevsowned) Total from survey1page2
group by numberevsowned
order by count(numberevsowned) desc;
|
|
Manufactured vs. Kit vs. Conversion |
|
|
select count(mfdcarcompany) as CM from survey1page2 where mfdcarcompany is not null;
select count(kitcarcompany) as CK from survey1page2 where kitcarcompany is not null;
select count(conversionmodel) as CV from survey1page2 where conversionmodel is not null;
|
|
Your Mobility - Do You Have A Record or Log? |
|
select count(logbook) as CY from survey1page4 where logbook = 'yes';
select count(logbook) as CN from survey1page4 where logbook = 'no';
|
| How Do You Feel About Your EV? |
|
select describefeeling from survey1page4 where describefeeling is not null;
#describefeeling#
|
|
Your Community -- EAA or Other Associations? |
|
| EAA | Other |
|
select count(eaamember) as CEAA from survey1page4 where eaamember = 'yes';
#CEAA# |
select count(otherassns) as CO from survey1page4 where otherassns is not null;
#CO# |
|
|
Your Supply Network -- Obstacles Encountered? |
|
select s7 from survey1page4 where s7 is not null;
#s7#
|
|
|
  |
This site is dedicated to using the World Wide Web to record recent events in the history of technology and to make this history available to the wider public. Please address comments, criticism, and contributions to <evonline@ucla.edu
>.
|