Home TechnologyCoding The Role of Diversity and Inclusion in the Technical Sector

The Role of Diversity and Inclusion in the Technical Sector

Using data science to explore gender (in)equality in the technical sector.

by Ivan
Diversity and Inclusion
Gender inequality

Diversity and inclusion are an emergent and significant concern for many organisations across the world.

Studies show that the three most important workplace needs are sociability with colleagues, opportunity to grow, and work-life balance. This article showcases that these needs are not facilitated equally across genders, and that important aspects of inclusivity for women, particularly those returning to work (after maternity leave, and supporting their career while starting a family), people with young children, and those requiring flexibility in their commute are not being recognised — a trend that would otherwise be associated with happier and more productive workers, and characterised as a way forward to promoting inclusion and diversity strategies within organisations.

Diversity and inclusion are an emergent and significant concern for many organisations across the world (Ferdman & Deane, 2014). Through the promotion of workplace diversity and inclusion policies, organisations have been able to reap rewards such as competitive advantage, superior business performance, employee satisfaction and loyalty, a strengthened relationship with multicultural communities, and attracting the best and brightest candidates (McCuiston, Wooldridge, & Pierce, 2004). Organisations which take active steps toward achieving a culture of diversity and inclusion have seen both a boost in employee engagement and productivity, as well as increased customer loyalty (Salesforce, 2017).

On the other hand, failure to promote inclusive practices results in decreased productivity, job satisfaction, and employee retention (Agócs & Burr, 1996). Research suggests that omission of diversity and inclusion in the workforce result in discriminatory perceptions. This has impacts upon the business’ reputation and ability to attract and retain a skilled workforce, as well as a diverse client base, affecting organisations economically (Moss, 1991).

Of relevance to the data sciences practice, diversity facilitates increased creativity in problem solving and better decision-making, which leads to higher economic performance (Bourke, Dillon, Giles, & Barry, 2011). Practices that consider the unique needs of their clients and users are thought to have more effective client communication, facilitate greater levels of empowerment from project stakeholders, and deliver service outcomes which more comprehensively address client and user needs (Hurst, 2000; Spinuzzi, 2005). The profession regards this consideration as a matter of professional responsiveness and responsibility (Collier, 2006; Gifford, 2015).

Job Design

Agócs & Burr (1996) note that the current workforce has been designed by and for staff who are white, male, able-bodied and Christian, and supported by a full-time domestic worker (a wife). This sits in stark contrast with the contemporary Australian demographic; the 2011 Australian Census underscores the increasing cultural diversity in Australia’s population, with over 30% of Australians born overseas and over 46% of the population having at least one parent born abroad (ABS, 2011). Traditional employment practices remain mostly unchanged (Agócs & Burr, 1996), and thus do not reflect the increasing diversity evidenced in the Australian employee landscape. As Australia has progressed to having increased multicultural dimensions, jobs need to be designed and/or refined to cater for the needs and aspirations of a diverse society (Bertone & Leahy, 2001).

Within technical industries, research shows that the field suffers from gender discrimination by: limiting work experience and advancement in opportunities; being inflexible to personal and family commitments; and offering poor work-life balance, which includes long work hours and lack of returnee training.

Barriers and limitations

Within the Australian context, research highlights that the concept of managing diversity is not well understood or appreciated (Bouten-Pinto, 2016). Organisations often display an inability to recognise an operational or strategic advantage added by implementing a diversity plan (Bouten-Pinto, 2015). This is particularly evident in senior management, where lack of understanding of the effectiveness of a diverse workforce is common, and further exacerbated when human resource managers are not involved (Davis, Frolova, & Callahan, 2016).

Diversity management in Australia typically falls to human resource departments to take ownership and agency, manage, support and enhance a diverse workforce (Strachan, Burgess, & French, 2009). Organisations without a human resources department are left without a governing body within the organisation to facilitate diversity and inclusion, and a disparate set of responsibilities falling to staff in a disjointed and poorly integrated fashion (Bouten-Pinto, 2015)

Organisations which then elect to implement diversity plans do so in an ad-hoc basis, where choices are often influenced by organisations’ biased culture and values (Strachan et al., 2009). Given that the culture and work model of technical practices is male-dominated, organisations are at risk of leaders failing to examine biases and consider the possibilities of diversity (Bouten-Pinto, 2015).

Data review, exploratory analysis and visualisation

This article will review Kaggle’s third annual Machine Learning and Data Science Survey.

For the purposes of the exploratory data analysis I have used the file
multiple_choice_responses.csv, and have selected the following features, as they were deemend most relevant for this exploration:

  • What is your age?
  • What is your gender?
  • In which country do you currently reside?
  • What is the highest level of formal education that you have attained or plan to attain?
  • Select the title most similar to your current role
  • Does your current employer incorporate machine learning methods into their business?
  • What is your current yearly compensation (approximate $USD)?

Reading the file:

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
sns.set_style('whitegrid')
df=pd.read_csv('multiple_choice_responses.csv',low_memory=False)
df = df[['Q1','Q2','Q3','Q4','Q5','Q6','Q7','Q10']]
df.columns = ['age','gender','country','education','job title','company Size','data Scientists','salary']
df = df.drop(df.index[0])
df.head()

Visualising distributions


plt.figure(figsize=(15,6))
sns.countplot(df['gender'],palette='coolwarm',order=df['gender'].value_counts().index)
plt.savefig('output.png')

A similar correlation and gender disparity emerges when considering age and gender.

plt.figure(figsize=(15,6))
sns.countplot(df['gender'],palette='coolwarm',order=df['gender'].value_counts().index)
plt.savefig('output.png',dpi=400)

This trend continues when visualising education, career growth, and disperity in salary.

plt.figure(figsize=(15,6))
sns.countplot(df['education'],palette='coolwarm',order=df['education'].value_counts().index)
plt.xticks(rotation=30,ha='right')
plt.savefig('education.png',dpi=400)

plt.figure(figsize=(15,6))
sns.countplot(df['education'],order=df['education'].value_counts().index,hue=df['gender'])
plt.xticks(rotation=30,ha='right')
plt.savefig('education_gender.png',dpi=400)

plt.figure(figsize=(15,6))
sns.countplot(df['job title'],order=df['job title'].value_counts().index)
plt.xticks(rotation=30,ha='right')
plt.savefig('job_title.png',dpi=400)

plt.figure(figsize=(15,6))
sns.countplot(df['job title'],order=df['job title'].value_counts().index,hue=df['gender'])
plt.xticks(rotation=30,ha='right')
plt.legend(loc='upper right')
plt.savefig('job_title_gender.png',dpi=400)

plt.figure(figsize=(15,6))
sns.countplot(df['salary'],order=df['salary'].value_counts().index)
plt.xticks(rotation=30,ha='right')
plt.savefig('salary.png',dpi=400)

plt.figure(figsize=(15,6))
sns.countplot(df['salary'],order=df['salary'].value_counts().index,hue=df['gender'])
plt.xticks(rotation=30,ha='right')
plt.legend(loc='upper right')
plt.savefig('salary_gender.png',dpi=400)

Conclusion

Kaggle’s research highlights that organisations suffer from lack of diversity and inclusion . This article underscores the potential value of enhanced diversity and inclusion, including: increased employee satisfaction and loyalty; attracting the best and brightest candidates; strengthened relationships with multicultural communities; increased growth, creative thinking and innovation; enhanced competitive advantage; and superior business performance (Finkelstein, 2017; McCuiston et al., 2004).

In particular, job design can be redeveloped in order to facilitate meaningful diversity and inclusion policies and procedures that : (1) are rooted in organisations’ culture, demographic and employee’s experiences, (2) are co-produced with employees to ensure greater commitment and empowerment, effective job design and enhanced personal motivation, and (3) facilitates ongoing reflective practice and review of procedures, systems and their measurements, ensuring a dynamic approach is employed when measuring objectives to ensure that diversity and inclusion grows and develops with the organisation, and that diversity and inclusion objectives are being achieved as anticipated.

Data sciences should be a reflection of the society that it researches. This means we need to recruit, retain and promote employees who can respond to the different needs and values of all sections of the community. In the past, engineers were drawn from a narrow sector of society, but now it is essential we ensure that the profession represents every demographic, social and cultural background.

References

ABS. (2011). Migration, Australia , cat. no. 3412.0. Retrieved from http://www.abs.gov.au/ausstats/abs@.nsf/Lookup/3412.0Chapter12011-12%20and%202012-13.

Agócs, C., & Burr, C. (1996). Employment equity, affirmative action and managing diversity: assessing the differences. International Journal of Manpower, 17(4/5), 30–45. doi:doi:10.1108/01437729610127668

Anthony, K. H. (2001). Designing for diversity: gender, race, and ethnicity in the architectural profession. Urbana: University of Illinois Press.

Architects Accreditation Council of Australia. (2015). Industry Profile: The profession of architecture in Australia. Retrieved from http://comparison.aaca.org.au/library/aaca_architecture_in_australia.pdf

Australian Multicultural Foundation. (2018). Retrieved from http://amf.net.au/

Bertone, S., & Leahy, M. (Eds.). (2001). Social equity, multiculturalism and the productive diversity paradigm: reflections on their role in corporate Australia. Melbourne, Australia: Common Ground Publishing.

Bhattacharyya, D. K. (2007). Human Resource Research Methods. England: Oxford University Press.

Bourke, J., Dillon, B., Giles, S., & Barry, L. (2011). Only skin deep? Re-examining the business case for diversity. Retrieved from https://www.ced.org/pdf/Deloitte_-_Only_Skin_Deep.pdf

Bouten-Pinto, C. (2009). Managing Cultural Differences — Participant Workbook. Brisbane: Partners In Cultural Competence & Ethnic Communities Council of Queensland.

Bouten-Pinto, C. (2015). Managing Cultural Diversity in Australia: Issues, Responses and Approaches (pp. 25).

Bouten-Pinto, C. (2016). Reflexivity in managing diversity: a pracademic perspective. Equality, Diversity and Inclusion: An International Journal, 35(2), 136–153. doi:doi:10.1108/EDI-10–2013–0087

Caven, V., Navarro Astor, E., & Doiop, M. (2016). A cross-national study of gender diversity initiatives in architecture The cases of the UK, France and Spain. Cross Cultural & Strategic Management, 23(3), 431–449.

Chen, J., Bamberger, P., Song, Y., Vashdi, D., & Chen, G. (2018). The Effects of Team Reflexivity on Psychological Well-Being in Manufacturing Teams. Journal of Applied Psychology.

Collier, J. (2006). The art of moral imagination: Ethics in the practice of architecture. Journal of Business Ethics, 66, 307–317.

Davis, P., Frolova, Y., & Callahan, W. (2016). Workplace diversity management in Australia: What do managers think and what are organisations doing? Equality, Diversity and Inclusion: An International Journal, 35(2), 81–98.

Diversity Council of Australia. (2018). Retrieved from https://www.dca.org.au/

Eddy, E. R., Tannenbaum, S. I., & Mathieu, J. E. (2013). Helping teams to help themselves, comparing two team-led debriefing methods. Personnel Psychology, 66, 975–1008.

Edwards, J. (2018). Flexibility at Work. Retrieved from http://archiparlour.org/flexibility-at-work/

Ferdman, B. M., & Deane, B. (Eds.). (2014). Diversity at Work: The Practice of Inclusion. San Francisco: Jossey-Bass.

Finkelstein, S. (2017). 4 Ways Managers Can Be More Inclusive. Harvard Business Review.

Gifford, R. (2015). Environmental psychology: Principles and practice (5 ed.). Colville: Optimal Books.

Greenberg, S. (2013). Practices have a story to tell: architects are waking up to the role of narrative in the placemaking process. Building Design, 2074, 18.

Kreisman, B. J. (2002). Insights Into Employee Motivation, Commitment and Retention. Retrieved from http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.582.5654&rep=rep1&type=pdf

Manley, S., & de Graft-Johnson, A. (2008). Women in architecture: five years on. Paper presented at the Proceedings of the 24th Annual ARCOM Conference, Cardiff, UK. http://www.arcom.ac.uk/-docs/proceedings/ar2008-891-900_Manley_and_de%20Graft-Johnson.pdf

Matthewson, G., Stead, N., & Burns, K. (2012). Women and Leadership in the Australian Architecture Profession Seizing the Initiative: Australian Women Leaders in Politics, Workplaces and Communities. Melbourne, Australia: eScholarship Research Centre, The University of Melbourne.

McCuiston, V. E., Wooldridge, B. R., & Pierce, C. K. (2004). Leading the diverse workforce. Leadership & Organization Development Journal, 25 (1), 73–92.

Moss, I. (1991). Report of the National Inquiry into Racist Violence in Australia. Canberra: Australian Government Publishing Service Retrieved from https://www.humanrights.gov.au/sites/default/files/document/publication/NIRV.pdf.

Plus Company Updates. (2018). The diversity agenda: Our commitment to get more women into engineering and architecture(12 April 2018). Retrieved from http://link.galegroup.com/apps/doc/A534433896/ITOF?u=unimelb&sid=ITOF&xid=7bac9e5d

Rudman, R. (2002). Human Resources Management (Vol. Fourth Edition): Pearson Education New Zealand.

Salesforce. (2017). The Impact of Equality and Values Driven Business. Retrieved from United States of America: https://c1.sfdcstatic.com/content/dam/web/en_us/www/assets/pdf/datasheets/salesforce-research-2017-workplace-equality-and-values-report.pdf

Sarangi, S. (2016). Who’s afraid of ethnic diversity? Retrieved from http://archiparlour.org/whos-afraid-of-ethnic-diversity

Slocum, J. W., & Hellriegel, D. (2007). Fundamentals of organizational behavior. Australia: Thomson South-Western.

Spinuzzi, C. (2005). The methodology of Participatory Design. Technical Communication, 52(2), 163–174.

Stanley, T. (2016). Work environments, creative behaviours, and employee engagement. (Doctor of Philosophy), Queensland University of Technology, Queensland, Australia. Retrieved from https://eprints.qut.edu.au/101547/

Stead, N., & Clark, J. (2012). Why equity policy matters. Retrieved from http://archiparlour.org/policy/

Strachan, G., Burgess, J., & French, E. (2009). The Diversity Management Approach to Equal Employment in Australian Organisations. The Economic and Labour Relations Review, 20(1), 59–74.

West, M. A. (2002). Sparkling foundations or stagnant ponds: An integrative model of creativity and innovation implementation in work groups. Applied Psychology, 51, 355–387.

Wlodkowski, R. J., & Ginsberg, M. B. (1995). Diversity and motivation: Culturally responsive teaching. San Francisco: Jossey-Bass.

Women in Leadership. (2018). Retrieved from https://women-intoleadership.com.au/

You may also like

Leave a Comment