relationship_texts <- tibble(
text = c(
# supportive
"I understand why you feel hurt and your feelings are valid.",
"You deserve someone who listens to you and respects your emotions.",
"That sounds really difficult and I am sorry you are going through it.",
"It makes sense that you would feel confused after that conversation.",
"You handled this with a lot of patience and care.",
"I think you should talk to them honestly because your feelings matter.",
"It is okay to need reassurance in a relationship.",
"You are not wrong for wanting kindness and consistency.",
"I can see why this situation would make you anxious.",
"You deserve to be treated with respect.",
"A healthy relationship should make both people feel heard.",
"Your reaction makes sense given what happened.",
"I hope you are able to get the support you need.",
"It sounds like you tried your best to communicate clearly.",
"You should not have to beg someone to care about your feelings.",
"I would feel hurt too if I were in that situation.",
"It is reasonable to ask for clarity and honesty.",
"You are allowed to set boundaries.",
"This sounds painful and I hope things get better for you.",
"You deserve compassion, not judgment.",
# neutral
"It depends on what happened before this conversation.",
"There may be more context needed before judging the situation.",
"It is hard to know without hearing both sides.",
"This could be a misunderstanding between both people.",
"The best next step may be to have a direct conversation.",
"More information would help explain their behavior.",
"This situation could go either way depending on their intentions.",
"It might be useful to wait and see if the pattern continues.",
"There are several possible explanations for what happened.",
"Both people may need time to think about the issue.",
"It is unclear whether this was intentional or accidental.",
"A calm conversation could help clarify the problem.",
"The situation sounds complicated and may need more context.",
"It depends on whether this has happened before.",
"There is not enough information to say for sure.",
"They may have meant something different than how it sounded.",
"It could be helpful to ask them what they meant.",
"This might be a communication issue rather than a relationship issue.",
"It is possible that both people are interpreting things differently.",
"The outcome depends on how they respond when you bring it up.",
# dismissive
"You are overreacting and making this a bigger deal than it is.",
"That sounds like your problem, not theirs.",
"I do not think your feelings matter that much here.",
"You are being too sensitive about something small.",
"Just get over it and move on.",
"This is not worth being upset about.",
"You are making drama out of nothing.",
"They probably did nothing wrong and you are reading into it.",
"You need to stop taking everything so personally.",
"Honestly, this sounds like an immature reaction.",
"You should not expect people to care about every little feeling.",
"This is a you problem, not a relationship problem.",
"You are acting like this is worse than it really is.",
"I think you are being dramatic.",
"There is no reason to be hurt by that.",
"You are creating problems where there are none.",
"It is not that serious.",
"You need thicker skin.",
"This seems like attention seeking.",
"You are blowing this way out of proportion."
),
tone = c(
rep("supportive", 20),
rep("neutral", 20),
rep("dismissive", 20)
)
)
relationship_texts <- relationship_texts %>%
mutate(tone = as.factor(tone))