To save content items to your account,
please confirm that you agree to abide by our usage policies.
If this is the first time you use this feature, you will be asked to authorise Cambridge Core to connect with your account.
Find out more about saving content to .
To save content items to your Kindle, first ensure no-reply@cambridge.org
is added to your Approved Personal Document E-mail List under your Personal Document Settings
on the Manage Your Content and Devices page of your Amazon account. Then enter the ‘name’ part
of your Kindle email address below.
Find out more about saving to your Kindle.
Note you can select to save to either the @free.kindle.com or @kindle.com variations.
‘@free.kindle.com’ emails are free but can only be saved to your device when it is connected to wi-fi.
‘@kindle.com’ emails can be delivered even when you are not connected to wi-fi, but note that service fees apply.
This conclusion presents some closing thoughts on the key concepts discussed on the preceding chapters of this book. The book focuses on how welfare workers and citizens translate and implement the principles of the bureaucracy, the values of the market and the norms from psychology in everyday welfare work. It analysis the three levels of power at play including 2-D level, 3-D level and 4-D level in the welfare encounters. The book introduces the reader to symbolic interactionism, because the tradition within sociology makes it possible to examine how welfare workers and citizens co-produce dominant powerful norms in the welfare encounter. It aims to draw attention to the techniques of new public management (NPM), such as efficiency, standards and benchmarks, as well as market values, such as service and courtesy, and business values, such as competition, choice, flexibility and respect for the entrepreneurial spirit.
Once a focus of political science, interest group studies lost prominence before a resurgence over the past 25 years. Today, scholars around the globe are paying more attention to interest groups, and studies of interest group politics in the American states are leading the way due to uniquely transparent disclosure regulations for lobbyists and institutional variation across state governments. This review charts the theoretical and methodological contributions that fueled this evolution and highlights lessons to be gleaned from contemporary American state scholarship. Findings include how structural power is a source of leverage for lobbyists, how interest groups venue shop within a state government from the legislature to bureaucracy and even elected agencies, and how sometimes the enactment of legislation is only the beginning of group influence.
Since the early centuries of Christianity, the pope has had help in governing the universal church. Throughout history, the power of the Roman Curia has been centralized in a curia of cardinals—at the expense of diminishing the role of the college of bishops. The Second Vatican Council’s contributions to the episcopate and the role of the laity inspired, if only in part, the reforms of Paul V and John Paul II. Praedicate Evangelium, the apostolic constitution authored by Pope Francis, emphasizes the pastoral dimension of the curia, the participation of the bishops, and the co-responsibility of all the faithful. It recognizes, for the first time in church history, the possibility that lay people can, in some cases, direct dicasteries. This historic statement is, however, a starting point for reform. Synodality and decentralization may require further changes both in the Roman Curia and at the diocesan level. In addition, there is an urgent need for the institutions and individuals involved in the central governance of the Catholic Church to ensure respect for the law, transparency, accountability, and anything that could constitute an abuse of power.
This chapter discusses William Trevor's representation of 'postcolonial London' in two early novels, The Boarding House and Miss Gomez and the Brethren. The interaction between living in a boarding house and accommodating oneself to others appears in Trevor's first novel, A Standard of Behaviour. Two of his novels and several short stories foreground African and Caribbean characters, and many of his short stories and several of his early novels include people from the Caribbean, Africa, Egypt and South Asia as workers in hospitals, offices and night clubs. Elizabeth Alone centres on four women awaiting operations in a maternity ward attended by doctors and nurses from Ireland, Australia, Jamaica, Africa and India. Throughout his career as a writer, Trevor has not only dramatised the absurdity of 'class divisions, colour divisions, sex divisions', but has also shown how tragically such divisions can affect the lives of others.
For people to effectively share an environment, they usually also must effectively share knowledge about that environment. While seemingly obvious and intuitive, this insight is often overlooked in literature about governing resources as commons. Focusing on the knowledge commons associated with an environmental commons helps to illuminate a host of complex governance dilemmas. This chapter examines the interrelationship between environmental and knowledge commons, weaving together different strands of commons research and practice. Examples discussed include shared pastures, forests, road systems, computer servers, social media platforms, living rooms, and antimicrobial effectiveness/resistance.
Colin and Leo in Sex Is Comedy are not Catherine Breillat's first explorations of male gender identity. While sexual desire in Breillat's film tends to move the man and woman not only toward each other but toward another way of being that is beyond prescriptive gender roles. The sparks that fly between the violent cop and his shady lady in Maurice Pialat's film tend to polarise the genders in stereotypical opposition to each other. All the critics agree that Noria is 'characterised misogynistically as a femme fatale'. The more domineering Mangin is in his role as macho cop, the more deceptive and elusive Noria becomes in her role as femme fatale, for the two roles interact in a polarising fashion, pushing the genders apart into diametrically opposed stereotypes. In this sense, Sale comme un ange could be seen as a feminist revision of Pialat's polar, as a 'woman's film'.
This paper examines Thailand’s evolving policy toward Cambodia during the Cold War through the lens of strategic narrative. While conventional accounts emphasise geopolitical rivalry and threat perception, this study argues that Thailand’s foreign policy was equally shaped by the discursive construction of meaning. Drawing on archival documents, political memoirs, media analysis, and academic debates, the paper traces how successive administrations—Kriangsak (1977–1980), Prem (1980–1988), and Chatichai (1988–1991)—reframed the Cambodian conflict to legitimise controversial policies, including cooperation with the Khmer Rouge.
Kriangsak’s narrative of a neutral “situation in Cambodia” justified Thailand’s cautious diplomacy while concealing covert assistance to the Khmer Rouge. Under Prem, the conflict was redefined as an “international crisis,” enabling alignment with ASEAN, China, and the United States while framing Khmer Rouge participation in the CGDK coalition as patriotic resistance. Chatichai’s “marketplace” narrative marked a departure from ideological posturing, emphasizing economic engagement and regional integration.
By analyzing these shifting frames, the paper demonstrates how narratives functioned as instruments of realpolitik, shaping public opinion, forging alliances, and legitimizing policies that often subordinated humanitarian concerns. Thailand’s case underscores the constructivist insight that power in international relations operates not only through material capabilities but also through the politics of interpretation.
• To implement the k-means clustering algorithm in Python.
• To determining the ideal number of clusters by implementing its code.
• To understand how to visualize clusters using plots.
• To create the dendrogram and find the optimal number of clusters for agglomerative hierarchical clustering.
• To compare results of k-means clustering with agglomerative hierarchical clustering.
• To implement clustering through various case studies.
13.1 Implementation of k-means Clustering and Hierarchical Clustering
In the previous chapter, we discussed various clustering algorithms. We learned that clustering algorithms are broadly classified into partitioning methods, hierarchical methods, and density-based methods. The k-means clustering algorithm follows partitioning method; agglomerative and divisive algorithms follow the hierarchical method, while DBSCAN is based on density-based clustering methods.
In this chapter, we will implement each of these algorithms by considering various case studies by following a step-by-step approach. You are advised to perform all these steps on your own on the mentioned databases stated in this chapter.
The k-means algorithm is considered a partitioning method and an unsupervised machine learning (ML) algorithm used to identify clusters of data items in a dataset. It is one of the most prominent ML algorithms, and its implementation in Python is quite straightforward. This chapter will consider three case studies, i.e., customers shopping in the mall dataset, the U.S. arrests dataset, and a popular Iris dataset. We will understand the significance of k-means clustering techniques to implement it in Python through these case studies. Along with the clustering of data items, we will also discuss the ways to find out the optimal number of clusters. To compare the results of the k-means algorithm, we will also implement hierarchical clustering for these problems.
We will kick-start the implementation of the k-means algorithm in Spyder IDE using the following steps.
Step 1: Importing the libraries and the dataset—The dataset for the respective case study would be downloaded, and then the required libraries would be imported.
Step 2: Finding the optimal number of clusters—We will find the optimal number of clusters by the elbow method for the given dataset.
Step 3: Fitting k-means to the dataset—A k-means model will be prepared by training the model over the acquired dataset.
Step 4: Visualizing the clusters—The clusters formed by the k-means model would then be visualized in the form of scatter plots.
NHS Talking Therapies (TT) is England’s main service for treating people with common mental disorders. Prior research has shown that a high proportion of people receiving TT ‘high intensity’ treatment have concurrent personality difficulties and that these are associated with poorer TT treatment outcomes. We developed a training workshop to enhance the skills, knowledge, and confidence of TT therapists in the treatment of this population and conducted a mixed methods evaluation to investigate whether the training was acceptable to staff and whether it had any impact on client outcomes. A quantitative survey (n=46) and qualitative interviews (n=6) were undertaken with staff and in parallel, we analysed the anonymised health outcomes of two client cohorts, treated pre-training (n=2434) and post-training (n=2358). Multi-level, difference-in-differences analyses revealed statistically significant cohort differences between the last and first scores on the domains of depression (–2.53, 95% CI: –3.02, –2.04), anxiety (–2.70, 95% CI: –3.15, –2.20), social functioning (–2.17, 95% CI: –2.88, –1.47), and phobia (–1.19; 95% CI: –0.29, –0.17). Therapists reported finding the training helpful, particularly in managing therapeutic alliances and enhancing the interpersonal effectiveness of their clients. Furthermore, the survey revealed a positive change in therapist attitudes to, skills related to, and knowledge of personality difficulties post-training. However, staff also suggested that broader structural changes and more resources are needed for TT services to better support clients with personality difficulties. Training initiatives such as this appear to be feasible and helpful for therapists, and may help to optimise client outcomes.
Key learning aims
(1) To understand the potential utility of online training for therapists, in their management of clients with concurrent personality difficulties.
(2) To understand high intensity therapist perspectives on attending a workshop to support tailoring treatments for depression and anxiety in the context of personality difficulties.
(3) To reflect on enhancing treatment for clients with personality difficulties via training workshops.
This chapter starts by examining the origins and outlook of the Community Workers' Co-operative (CWC, the Co-op) in the early 1980s, highlighting its focus on community empowerment, which informed its practice over subsequent years. It focuses on the Co-op's shift from critique to engagement and negotiation by the CWC with government. The chapter reviews the process of becoming a social partner and the Co-op's initiation of the Community Platform, which it hoped would be recognised by government and the existing social partners as the community sector social partner. It deals with the implications for the Co-op of prosperity after 1997. The CWC distinguished between the self-organising community sector and the traditionally philanthropic 'voluntary sector'. The Co-op stressed the importance to democracy of a tension between dissenting communities and representative government.
Chapter Six focuses on the Government response to Communism at home. Shaped by their wartime experiences of intelligence and security, it argues that the popular perception that Ministers were suspicious of the intelligence services, particularly the Security Service, is unfounded, based largely upon Labour folklore. In fact, rather than viewing MI5 with distain, even alarm, Ministers in the new government were aware of the need for an internal security body; any changes in the security apparatus were the result of the recommendations made by Sir Findlater Stewart, whose report of November 1945 is examined here for the first time. The chapter also looks at the development of Whitehall security procedures using the minutes and memoranda of the Committee on Subversive Activities (GEN 183). It argues that, as in the field of British policy towards Russia, domestic countermeasures measures against Communists in the civil service were hidden until the spring of 1948 after attempts at Anglo-Soviet rapprochement finally broke down. Despite the introduction and later expansion of vetting, Ministers sought to balance anti-Communist measures alongside the need for freedom of speech and liberty. Nowhere is this clearer than in discussions for domestic anti-Communist propaganda. While the Labour Party and other organisations had participated in the distribution of such material, IRD had no specific mandate to conduct its activities at home. However, after the outbreak of hostilities in Korea, Ministers authorised a domestic campaign aimed at influential sections of the British public, with the study looking at the early development of this campaign, revealing IRD’s domestic activities in education, industry and the armed forces.