A brief overview of the results of a meta-analysis on the relationship between team design and team creativity and innovation.
If you are responsible for managing a team that is expected to be creative and come up with innovative solutions, you may be interested in the findings of Byron et al.’s (2023) meta-analysis of team-design-related antecedents of team creativity and innovation. The meta-analysis aggregated results from 134 field studies (11,353 teams) and 35 student studies (2,485 teams) and revealed the following regularities, among others:
import pandas as pd
from plotnine import *
# uploading table with meta-analysis results
= pd.read_excel("./metaanalysis_results.xlsx")
data # extracting higher and lower borders of 95% CI
'l95ci', 'h95ci']] = data['95CI'].str.split(',', expand=True).astype(float)
data[[
# sorting the df for dataviz purposes
'abs_P'] = data['P'].abs()
data[= data.sort_values(by=['Category', 'abs_P'], ascending=[False, True])
data_sorted = data_sorted['Variable'].unique()
categories_order 'Variable'] = pd.Categorical(data_sorted['Variable'], categories=categories_order, ordered=True) data_sorted[
library(reticulate)
library(ggplot2)
colors = c(
'Team composition'='#e15759',
'Task structure'='#f28e2b',
'Organizational support'='#4e79a7'
)
ggplot(py$data_sorted, aes(x=Variable, y=P, fill = Category, color = Category)) +
geom_hline(yintercept=0, linetype="dashed", color="grey") +
geom_point(size=3) +
geom_errorbar(aes(ymin=l95ci, ymax=h95ci), width=0.3, size=1) +
scale_color_manual(values=colors) +
scale_fill_manual(values=colors) +
coord_flip() +
labs(
x = "",
y = "Optimally-weighted and corrected mean correlation (ρ) with 95% CI",
title = "Meta-analytic results for team design and team creativity/innovation",
fill = "",
color = "",
caption = "Data source: Byron et al. (2023)"
) +
theme_bw() +
ggplot2::theme(
plot.title = element_text(color = '#2C2F46', face = "bold", size = 18, margin=margin(0,0,12,0)),
plot.subtitle = element_text(color = '#2C2F46', face = "plain", size = 15, margin=margin(0,0,12,0)),
plot.caption = element_text(color = '#2C2F46', face = "plain", size = 11, hjust = 0),
axis.title.x.bottom = element_text(margin = margin(t = 15, r = 0, b = 0, l = 0), color = '#2C2F46', face = "plain", size = 13, hjust = 0),
axis.text = element_text(color = '#2C2F46', face = "plain", size = 12),
axis.line = element_line(colour = "#E0E1E6"),
axis.ticks = element_line(color = "#E0E1E6"),
strip.text.x = element_text(size = 11, face = "plain"),
legend.position= "top",
legend.key = element_rect(fill = "white"),
legend.key.width = unit(1.6, "line"),
legend.margin = margin(0,0,0,0, unit="cm"),
legend.text = element_text(color = '#2C2F46', face = "plain", size = 12),
panel.background = element_blank(),
panel.grid.major.y = element_blank(),
panel.grid.major.x = element_blank(),
panel.grid.minor = element_blank(),
plot.margin=unit(c(5,5,5,5),"mm"),
plot.title.position = "plot",
plot.caption.position = "plot"
)
What might be the practical implications for managers?
For attribution, please cite this work as
Stehlík (2024, Jan. 8). Ludek's Blog About People Analytics: How should teams be designed to be creative and innovative?. Retrieved from https://blog-about-people-analytics.netlify.app/posts/2024-01-08-team-design-creativity-innovation/
BibTeX citation
@misc{stehlík2024how, author = {Stehlík, Luděk}, title = {Ludek's Blog About People Analytics: How should teams be designed to be creative and innovative?}, url = {https://blog-about-people-analytics.netlify.app/posts/2024-01-08-team-design-creativity-innovation/}, year = {2024} }