Business and Biopdiversity - Ch 4 - Snowball Pilot

Back to Readme

Setup

Code
#|
if (!exists("params")) {
    params <- rmarkdown::yaml_front_matter("snowball.qmd")$params
}

library(IPBES.R)

library(openalexR)
Thank you for using openalexR!
To acknowledge our work, please cite the package by calling `citation("openalexR")`.
To suppress this message, add `openalexR.message = suppressed` to your .Renviron file.
Code
library(tibble)
library(dplyr)

Attaching package: 'dplyr'
The following objects are masked from 'package:stats':

    filter, lag
The following objects are masked from 'package:base':

    intersect, setdiff, setequal, union
Code
library(knitr)

library(networkD3)

# list.files(
#     "R",
#     full.names = TRUE,
#     recursive = TRUE
# ) |>
#     sapply(
#         FUN <- source
#     )

kp_dois <- file.path("input", "key_papers", params$key_paper) |>
    readLines() |>
    grep(
        pattern = "doi = ",
        value = TRUE
    ) |>
    sub(
        pattern = ".*\\{",
        replacement = ""
    ) |>
    gsub(
        pattern = "\\}.$",
        replacement = ""
    )

Searches

Setup OpenAlex usage

Code
#|

fn <- file.path("data", "key_works.rds")
if (file.exists(fn)) {
    key_works <- readRDS(fn)
} else {
    key_works <- oa_fetch(
        entity = "works",
        doi = kp_dois,
        verbose = FALSE
    )
    saveRDS(key_works, fn)
}

Do first snowball search (S1)

Code
fn <- file.path(".", "data", "snowball_1.rds")
if (file.exists(fn)) {
    snowball_1 <- readRDS(fn)
} else {
    snowball_1 <- oa_snowball(
        identifier = openalexR:::shorten_oaid(key_works$id),
        verbose = FALSE
    )
    saveRDS(snowball_1, fn)
}

flat_snow_1 <- snowball2df(snowball_1) |>
    as_tibble()

The search resulted in 668 papers and 935 citations, including the key-papers.

Do second snowball search (S2)

For the second snowball search (S2) we use the corpus identified by S1 as the key-papers.

This needs to be enabled (eval = false needs to be changed to eval = true in the following code block) as the resulting data file is to large for github and running of the snowball search takes several hours.

Code
fn <- file.path(".", "data", "snowball_2.rds")
if (file.exists(fn)) {
    snowball_2 <- readRDS(fn)
} else {
    snowball_2 <- oa_snowball(
        identifier = openalexR:::shorten_oaid(snowball_1$nodes$id),
        verbose = FALSE
    )
    saveRDS(snowball_2, fn)
}

flat_snow_2 <- snowball2df(snowball_1) |>
    as_tibble()

The search resulted in 167275 papers and 225735 citations, including the key-papers, i.e. papers in corpus S1.

Export S1 Corpus to Excel file

Only S1 can be exported to Excel due to the size of the S2 corpus.

Code
#|

fn <- file.path(".", "data", "snowball_1.xlsx")
if (!file.exists(fn)) {
    to_xlsx(
        snowball = snowball_1,
        xls_filename = fn
    )
}

# fn <- file.path(".", "data", "snowball_2.xlsx")
# if (!file.exists(fn)) {
#     to_xlsx(
#         snowball = snowball_2,
#         xls_filename = fn
#     )
# }

To download Excel file click here

The column are: (the Concept columns are not that relevant at the moment)

  • id: internal id fromOpenAlex
  • author: authors of the paper
  • publication_year: publication year
  • title: title of the paper
  • doi: doi of the paper
  • no_referenced_works: number of references in the paper which are also in OpenAlex
  • cited_global: Number of times the paper has been cited
  • cited_global_per_year: standardised number of times cirted (cited_global / number of years published)
  • no_connections: number of connections in the rgaph, i.e. either cited or citing a paper in the snowball corpus
  • concepts_l0: Concept 0. level assigned by OpenAlex
  • concepts_l1: Concept 1. level assigned by OpenAlex
  • concepts_l2: Concept 2. level assigned by OpenAlex
  • concepts_l3: Concept 3. level assigned by OpenAlex
  • concepts_l4: Concept 4. level assigned by OpenAlex
  • concepts_l5: Concept 5. level assigned by OpenAlex
  • author_institute: Institute of the authors
  • institute_country: Country of the institute
  • abstract: the abstract of the paper

Graphs

Static Citation Network Graph of the S1 Corpus

Only S1 corpus of S1 can be graphed due to the size of the S2 corpus.

Code
if ((length(list.files(path = "figures", pattern = "Snowball_1_.*", recursive = TRUE))) < 4) {
    plot_snowball(
        snowball_1,
        name = "Snowball_1"
    )
}

Right click - Download for (better quality)

Interactive Citation Network Graph of the S1 Corpus

Code
nwg <- IPBES.R::plot_snowball_interactive(snowball_1)
saveNetwork(
    nwg, 
    file = file.path("figures", "S1_interactive_network.html"),
    selfcontained = TRUE
)
unlink(file.path("figures", "S1_interactive_network_files"), recursive = TRUE)
nwg

To open the interactive graph in a standalone window click here.

The following interactions are possible:

  • moving your mouse over a node, the title author and year of the paper is shown.
  • clicking on a node will open the paper in a new tab.
  • scrolling up and down with your scroll wheel zooms in and out
  • clicking on the canvas and move the mouse will move the network
  • clicking on a node and dragging it moves the node

Identification of references with more than one edge

This is the number of connections (connection_count) of the paper (id)

Only the corpus of S1 is shown here due to the size of the S2 corpus.

Code
#|
mult_edge <- flat_snow_1 |>
    select(id, connection_count) |>
    filter(connection_count > 1) |>
    arrange(desc(connection_count))

links <- flat_snow_1 |>
    filter(id %in% mult_edge$id)

links |>
    select(id, display_name, publication_year, doi, connection_count) |>
    arrange(desc(connection_count)) |>
    knitr::kable()
id display_name publication_year doi connection_count
W2743276478 Accounts of nature and the nature of accounts 2017 https://doi.org/10.1108/aaaj-07-2017-3010 254
W2070209083 Problematising accounting for biodiversity 2013 https://doi.org/10.1108/aaaj-03-2013-1255 170
W4385362977 Biodiversity accounting: a bibliometric analysis for comprehensive literature mapping 2023 https://doi.org/10.1108/sampj-04-2022-0214 124
W3088975513 Biodiversity and extinction accounting for sustainable development: A systematic literature review and future research directions 2020 https://doi.org/10.1002/bse.2649 118
W4292474513 Biodiversity accounting and reporting: A systematic literature review and bibliometric analysis 2022 https://doi.org/10.1016/j.jclepro.2022.133677 100
W3018166113 Innovations comptables pour la biodiversité et les écosystèmes : une typologie axée sur l’exigence de résultat environnemental 2021 https://doi.org/10.3917/cca.271.0013 88
W4283009762 Managing and accounting for corporate biodiversity contributions. Mapping the field 2022 https://doi.org/10.1002/bse.3166 48
W569381826 Accounting for Biodiversity 2014 https://doi.org/10.4324/9780203097472 32
W3137404931 Routledge Handbook of Environmental Accounting 2021 https://doi.org/10.4324/9780367152369 13
W2065840971 Accounting for the Unaccountable: Biodiversity Reporting and Impression Management 2014 https://doi.org/10.1007/s10551-014-2497-9 7
W2081327878 Biodiversity reporting in Sweden: corporate disclosure and preparers’ views 2013 https://doi.org/10.1108/aaaj-02-2013-1228 7
W2743472763 Ecology-centred accounting for biodiversity in the production of a blanket bog 2017 https://doi.org/10.1108/aaaj-12-2015-2330 7
W2782810353 Integrated extinction accounting and accountability: building an ark 2018 https://doi.org/10.1108/aaaj-06-2017-2957 7
W1979185175 Biodiversity reporting in Denmark 2013 https://doi.org/10.1108/aaaj:02-2013-1232 6
W2043801907 Bringing tropical forest biodiversity conservation into financial accounting calculation 2013 https://doi.org/10.1108/aaaj-02-2013-1231 6
W2743053030 A blueprint towards accounting for the management of ecosystems 2017 https://doi.org/10.1108/aaaj-12-2015-2360 6
W2786394464 Biodiversity and threatened species reporting by the top Fortune Global companies 2018 https://doi.org/10.1108/aaaj-03-2016-2490 6
W2891332961 MakingAccounting for BiodiversityResearch a Force for Conservation 2018 https://doi.org/10.1080/0969160x.2018.1516559 6
W3004209126 Exploring factors relating to extinction disclosures: What motivates companies to report on biodiversity and species protection? 2020 https://doi.org/10.1002/bse.2442 6
W1997358249 Accounting for biodiversity: operationalising environmental accounting 2003 https://doi.org/10.1108/09513570310505961 5
W2025238476 Biodiversity offsetting: problematisation of an emerging governance regime 2013 https://doi.org/10.1108/aaaj-02-2013-1234 5
W2027193292 Managing Biodiversity Through Stakeholder Involvement: Why, Who, and for What Initiatives? 2015 https://doi.org/10.1007/s10551-015-2668-3 5
W2059285952 Is accounting for sustainability actually accounting for sustainability…and how would we know? An exploration of narratives of organisations and the planet 2010 https://doi.org/10.1016/j.aos.2009.04.006 5
W2077974228 ACCOUNTING FOR BIODIVERSITY: A PILOT STUDY 1996 https://doi.org/10.1006/bare.1996.0019 5
W2121511991 Developing a reporting and evaluation framework for biodiversity 2014 https://doi.org/10.1108/aaaj-10-2013-1496 5
W2623114543 From the Big Five to the Big Four? Exploring extinction accounting for the rhinoceros 2018 https://doi.org/10.1108/aaaj-12-2015-2320 5
W2738012312 UK local councils reporting of biodiversity values: a stakeholder perspective 2017 https://doi.org/10.1108/aaaj-12-2015-2367 5
W2753019006 United Nations Decade on Biodiversity 2017 https://doi.org/10.1108/aaaj-04-2015-2028 5
W2785397723 Making extinction calculable 2018 https://doi.org/10.1108/aaaj-10-2015-2264 5
W2883740377 Using conservation science to advance corporate biodiversity accountability 2018 https://doi.org/10.1111/cobi.13190 5
W2897121077 The logics of biodiversity accounting in the UK public sector 2019 https://doi.org/10.1080/01559982.2019.1605873 5
W3010602392 Framing sustainable development challenges: accounting for SDG-15 in the UK 2020 https://doi.org/10.1108/aaaj-01-2019-3810 5
W1999167944 Planetary boundaries: Guiding human development on a changing planet 2015 https://doi.org/10.1126/science.1259855 4
W2011987144 Mainstreaming biodiversity accounting: potential implications for a developing economy 2013 https://doi.org/10.1108/aaaj-03-2013-1242 4
W2057518358 Biodiversity valuation and the discount rate problem 2013 https://doi.org/10.1108/aaaj-02-2013-1226 4
W2138058169 Words not actions! The ideological role of sustainable development reporting 2009 https://doi.org/10.1108/09513570910999292 4
W2692889113 The contested instruments of a new governance regime 2017 https://doi.org/10.1108/aaaj-12-2015-2336 4
W2784267580 The emancipatory potential of extinction accounting: Exploring current practice in integrated reports 2018 https://doi.org/10.1016/j.accfor.2017.12.001 4
W2785772356 The purposes, promises and compromises of extinction accounting in the UK public sector 2018 https://doi.org/10.1108/aaaj-03-2016-2494 4
W2901004189 Four priorities for new links between conservation science and accounting research 2018 https://doi.org/10.1111/cobi.13254 4
W2910488570 Seeking an ecologically defensible calculation of net loss/gain of biodiversity 2019 https://doi.org/10.1108/aaaj-01-2018-3339 4
W2960458820 Biodiversity reporting for governmental organisations 2019 https://doi.org/10.1108/aaaj-05-2018-3472 4
W2974196717 Biodiversity disclosure in Australia: effect of GRI and institutional factors 2019 https://doi.org/10.1080/14486563.2019.1629544 4
W3036239694 The Naturalists Journals of Gilbert White: exploring the roots of accounting for biodiversity and extinction accounting 2020 https://doi.org/10.1108/aaaj-03-2016-2450 4
W3199128165 Corporate accountability for biodiversity and species extinction: Evidence from organisations reporting on their impacts on nature 2021 https://doi.org/10.1002/bse.2890 4
W4376607897 Environmental, Social, and Governance (ESG) Promotion to Different Stakeholder Groups 2023 https://doi.org/10.1007/978-981-99-1564-4_6 4
W4387685599 Extinction Accounting 2023 https://doi.org/10.4018/978-1-6684-9076-1.ch003 4
W2005438132 Accounting and Ecological Crisis 1991 https://doi.org/10.1108/09513579110003277 3
W2016554687 W(h)ither Ecology? The Triple Bottom Line, the Global Reporting Initiative, and Corporate Sustainability Reporting 2012 https://doi.org/10.1007/s10551-012-1543-8 3
W2109891445 Accounting and environmentalism: An exploration of the challenge of gently accounting for accountability, transparency and sustainability 1992 https://doi.org/10.1016/0361-3682(92)90038-t 3
W2580307745 An initial review of biodiversity reporting by South African corporates: The case of the food and mining sectors 2016 https://doi.org/10.4102/sajems.v19i4.1477 3
W2622037617 Agroecology accounting: biodiversity and sustainable livelihoods from the margins 2017 https://doi.org/10.1108/aaaj-12-2015-2363 3
W2743865161 “Mathematics maybe, but not money” 2017 https://doi.org/10.1108/aaaj-06-2017-2963 3
W2765512340 Linking Environmental Management Accounting: A Reflection on (Missing) Links to Sustainability and Planetary Boundaries 2017 https://doi.org/10.1080/0969160x.2017.1395351 3
W2778636465 Corporate Biodiversity Management through Certifiable Standards 2017 https://doi.org/10.1002/bse.2005 3
W2786896614 Perhaps the Dodo should have accounted for human beings? Accounts of humanity and (its) extinction 2018 https://doi.org/10.1108/aaaj-03-2016-2483 3
W2795866931 A review of biodiversity reporting by the South African seafood industry 2018 https://doi.org/10.4102/sajems.v21i1.1959 3
W2895799193 Biodiversity reporting and organised hypocrisy 2018 https://doi.org/10.1108/qram-07-2017-0066 3
W2900460206 Corporate reporting and conservation realities: Understanding differences in what businesses say and do regarding biodiversity 2018 https://doi.org/10.1002/eet.1839 3
W2910085412 Corporate biodiversity accounting and reporting in mega-diverse countries: An examination of indicators disclosed in sustainability reports 2019 https://doi.org/10.1016/j.ecolind.2018.11.060 3
W2910752062 Improving corporate biodiversity management through employee involvement 2019 https://doi.org/10.1002/bse.2273 3
W2971826453 The challenge 2020 https://doi.org/10.1108/sampj-07-2018-0201 3
W2980298090 Biodiversity accounting: uncover environmental destruction in Indonesia 2019 https://doi.org/10.1108/srj-11-2018-0291 3
W3002382966 European firms’ corporate biodiversity disclosures and board gender diversity from 2002 to 2016 2020 https://doi.org/10.1016/j.bar.2020.100893 3
W3038057993 Bringing sustainability to life: A framework to guide biodiversity indicator development for business performance management 2020 https://doi.org/10.1002/bse.2573 3
W3137846755 Assessing the Emancipatory Nature of Chinese Extinction Accounting 2021 https://doi.org/10.1080/0969160x.2021.1889386 3
W3160043700 The future of non‐financial businesses reporting: Learning from the Covid‐19 pandemic 2021 https://doi.org/10.1002/csr.2145 3
W4281559835 A resilience approach to corporate biodiversity impact measurement 2022 https://doi.org/10.1002/bse.3140 3
W4293059051 Editorial 2022 https://doi.org/10.1002/bse.3186 3
W4386193780 Environmental Management Accounting – Developments Over the Last 20 years from a Framework Perspective 2023 https://doi.org/10.1111/auar.12407 3
W4386351341 Exploring the historical roots of environmental and ecological accounting from the dawn of human consciousness 2023 https://doi.org/10.1108/aaaj-03-2023-6354 3
W1577773346 Social, environmental and sustainability reporting and organisational value creation? 2006 https://doi.org/10.1108/09513570610709872 2
W1977103112 A full cost environmental accounting experiment 2005 https://doi.org/10.1016/j.aos.2005.01.001 2
W2017452564 Ecology, Community and Lifestyle 1989 https://doi.org/10.1017/cbo9780511525599 2
W2020153874 Towards a consistent approach for ecosystem accounting 2013 https://doi.org/10.1016/j.ecolecon.2013.03.003 2
W2021552687 Climate change accounting research: keeping it interesting and different 2011 https://doi.org/10.1108/09513571111184715 2
W2026451422 THE ECOLOGICAL ACCOUNTANT: FROM THE COGITO TO THINKING LIKE A MOUNTAIN 1996 https://doi.org/10.1006/cpac.1996.0031 2
W2049949098 Sustainability accounting and reporting: fad or trend? 2010 https://doi.org/10.1108/09513571011080144 2
W2053561911 Accounting and sustainable development: An exploration 2014 https://doi.org/10.1016/j.aos.2014.01.003 2
W2055013323 Introduction 2002 https://doi.org/10.1108/09513570210435852 2
W2069212781 Accounting for the environment: Towards a theoretical perspective for environmental accounting and reporting 2010 https://doi.org/10.1016/j.accfor.2010.03.001 2
W2069430191 Stockholders and Stakeholders: A New Perspective on Corporate Governance 1983 https://doi.org/10.2307/41165018 2
W2075726126 On sustainability; the environment and management accounting 1996 https://doi.org/10.1006/mare.1996.0007 2
W2087997477 Contributions of the private sector to global biodiversity protection: case study of the Fortune 500 companies 2012 https://doi.org/10.1080/21513732.2012.710250 2
W2091492387 Organized hypocrisy, organizational façades, and sustainability reporting 2015 https://doi.org/10.1016/j.aos.2014.12.003 2
W2125225673 New accounts: Towards a reframing of social accounting 2014 https://doi.org/10.1016/j.accfor.2013.10.005 2
W2181008844 Biodiversity reporting in China: an exploratory study 2015 NA 2
W221961528 Progress and challenges in the development of ecosystem accounting as a tool to analyse ecosystem capital 2015 https://doi.org/10.1016/j.cosust.2015.04.002 2
W2266336163 Biodiversity and local government: a reporting and accountability perspective 2016 https://doi.org/10.1108/maj-08-2014-1082 2
W2271814569 Accounting for Biodiversity 2015 https://doi.org/10.1108/sampj-03-2015-0016 2
W2481313456 The Shallow and the Deep, Long-Range Ecology Movement: A Summary 2007 https://doi.org/10.1007/978-1-4020-4519-6_85 2
W2513601912 Lake Pedder: Accounting, environmental decision-making, nature and impression management 2016 https://doi.org/10.1016/j.accfor.2016.06.005 2
W2582726133 Accounting for biodiversity in Australia 2017 https://doi.org/10.1108/par-03-2016-0033 2
W2885834055 Creating financial value for tropical forests by disentangling people from nature 2018 https://doi.org/10.1016/j.accfor.2018.07.001 2
W2891918728 Social Underpinnings of Ecological Knowledge: Business Perceptions of Biodiversity as Social Learning 2018 https://doi.org/10.1177/1086026618803723 2
W2914628531 Sustainability Accounting and Education: Conflicts and Possibilities 2019 https://doi.org/10.1007/978-3-319-98125-3_3 2
W2955718929 Special issue of business, strategy, and the environment call for papers business, society, biodiversity, and natural capital deadline June 30, 2020 (see details of conference/workshop at the end of the call for paper) 2019 https://doi.org/10.1002/bse.2348 2
W2995102130 Sustainability and financial performance of small and medium sized enterprises: A bibliometric and systematic literature review 2019 https://doi.org/10.1002/bse.2434 2
W3025840674 Business Legitimacy, Agricultural Biodiversity, and Environmental Ethics: Insights from Sustainable Bakeries 2020 https://doi.org/10.1007/978-3-319-68845-9_119-1 2
W3085607722 A Practical Application of Accounting for Biodiversity: The Case of Soil Health 2020 https://doi.org/10.1080/0969160x.2020.1819360 2
W3106181709 The houbara bustard: a thematic analysis of a bird’s threatened extinction and a government’s accountability failure 2020 https://doi.org/10.1108/aaaj-07-2019-4113 2
W3114037691 Public value and the planet: accounting in ecological reconstitution 2020 https://doi.org/10.1108/aaaj-11-2019-4283 2
W3125505924 Towards a Methodology for Developing Evidence‐Informed Management Knowledge by Means of Systematic Review 2003 https://doi.org/10.1111/1467-8551.00375 2
W3126852824 The impact of board and hotel characteristics on biodiversity reporting: market diversification as a moderator 2021 https://doi.org/10.1108/srj-02-2019-0072 2
W3130178090 Angry Birds – The Use of International Union for the Conservation of Nature Categories as Biodiversity Disclosures in Extinction Accounting 2021 https://doi.org/10.1080/0969160x.2021.1881577 2
W3135333110 Accounting for Biodiversity and Extinction: The Case of South African National Parks 2021 https://doi.org/10.1080/0969160x.2021.1889385 2
W3135520131 Corporate Accountability Towards Species Extinction Protection: Insights from Ecologically Forward-Thinking Companies 2021 https://doi.org/10.1007/s10551-021-04800-9 2
W3152506724 The Impact of Audit Committee Characteristics on Corporate Biodiversity Disclosure: An Analysis of Japanese Firms 2021 https://doi.org/10.26710/jbsee.v7i2.1620 2
W3159094282 On crisis and emergency: Is it time to rethink long-term environmental accounting? 2022 https://doi.org/10.1016/j.cpa.2021.102311 2
W3197237743 Organizational use of ecosystem service approaches: A critique from a systems theory perspective 2021 https://doi.org/10.1002/bse.2887 2
W3203695759 Unpacking dialogic accounting: a systematic literature review and research agenda 2021 https://doi.org/10.1108/aaaj-08-2020-4736 2
W4200378683 Biodiversity reporting practices of the South African national parks 2021 https://doi.org/10.1108/srj-06-2020-0264 2
W4200558841 “Fumifugium: Or the inconvenience of the Aer and Smoake of London Dissipated”: emancipatory social accounting in 17th century London 2021 https://doi.org/10.1108/aaaj-01-2021-5108 2
W4212956316 Tackling the integration challenge between environmental strategy and environmental management accounting 2022 https://doi.org/10.1108/aaaj-03-2020-4452 2
W4230393585 Business Legitimacy, Agricultural Biodiversity, and Environmental Ethics: Insights from Sustainable Bakeries 2020 https://doi.org/10.1007/978-3-030-14622-1_119 2
W4244507350 The logics of biodiversity accounting in the UK public sector 2018 https://doi.org/10.1016/j.accfor.2018.09.005 2
W4254405447 Accounting, Organizing, and Economizing: Connecting Accounting Research and Organization Theory 2013 https://doi.org/10.5465/19416520.2013.783668 2
W4280528435 The making of imperfect indicators for biodiversity: A case study of UK biodiversity performance measurement 2022 https://doi.org/10.1002/bse.3133 2
W4281611865 Business, biodiversity and ecosystem services: Evidence from large‐scale survey data 2022 https://doi.org/10.1002/bse.3141 2
W4281760151 From impacts to dependencies: A first global assessment of corporate biodiversity risk exposure and responses 2022 https://doi.org/10.1002/bse.3142 2
W4282833631 Conservation through conversation? Therapeutic engagement on biodiversity and extinction between NGOs and companies 2022 https://doi.org/10.1002/bse.3144 2
W4286223148 Integrating biodiversity into financial decision‐making: Challenges and four principles 2022 https://doi.org/10.1002/bse.3208 2
W4289767465 Accounting in the Anthropocene: A roadmap for stewardship 2022 https://doi.org/10.1080/00014788.2022.2079780 2
W4304091713 Assessing the Nexus between Cross-border Infrastructure Projects and Extinction Accounting—from the Belt and Road Initiative Perspective 2022 https://doi.org/10.1080/0969160x.2022.2132969 2
W4304192477 Biodiversity management approaches in small and innovative businesses: insights from a systems thinking perspective 2022 https://doi.org/10.1108/srj-03-2022-0113 2
W4307918879 Investigating biodiversity and circular economy disclosure practices: Insights from global firms 2022 https://doi.org/10.1002/csr.2402 2
W4313407277 Implementing biodiversity reporting: insights from the case of the largest dairy company in China 2022 https://doi.org/10.1108/sampj-09-2021-0375 2
W4317506086 Trois méthodes comptables complémentaires pour mettre les problèmes écologiques au cœur de la chose publique 2023 https://doi.org/10.3917/rfap.183.0174 2
W4323664029 Firm’s biodiversity initiatives disclosure and board gender diversity: A multi‐country analysis of corporations operating in Europe 2023 https://doi.org/10.1002/bse.3404 2
W4367299143 “As bad as bad can be”: accounting for species extinction in the North Pacific 2023 https://doi.org/10.1108/aaaj-06-2022-5884 2
W4386735578 Environmental Accounting in the European Accounting Review: A Reflection 2023 https://doi.org/10.1080/09638180.2023.2254351 2
W4386929191 An algorithmic historiography of biodiversity accounting literature 2023 https://doi.org/10.1108/aaaj-06-2022-5883 2
W4387397656 Is biodiversity disclosure emerging as a key topic on the agenda of institutional investors? 2023 https://doi.org/10.1002/bse.3587 2
W4387418696 Failure to consider environmental risk: The case for biodiversity impact disclosure in the electricity sector 2023 https://doi.org/10.1016/j.jup.2023.101672 2
W4387819648 Accounting and the exploitation of the natural world: Studies from a historical perspective 2023 https://doi.org/10.1177/10323732231208726 2
W4388911260 Rethinking Planetary Boundaries: Accounting for Ecological Limits 2023 https://doi.org/10.1080/0969160x.2023.2283019 2