plot( network_graph,vertex.label =V(network_graph)$name,main ="Social Media Network Analysis")
##Interpretation of the graph
Based on the graph, User2 and User3 each have four direct connections, which is the highest number of direct connections in the network. Therefore, based only on degree, they are tied. However, counting connections alone does not consider the importance of the users they are connected to. In Part B, eigenvector analysis will be used to compare their structural influence in the network.
The eigenpair satisfies the relationship Av = \(\lambda\)v, where A is the adjacency matrix, \(\lambda\)=3.1691946 is the dominant eigenvalue, and v is its corresponding eigenvector. The all.equal() result returns TRUE, confirming numerically that Av ≈ \(\lambda\)v.
The dominant eigenvalue is approximately 3.1692. Using the corresponding eigenvector, the largest absolute component is approximately 0.5090 and belongs to User3. User2 has a slightly lower score of approximately 0.4825. Although User2 and User3 are tied with four direct connections each, User3 has the highest eigenvector-centrality score. Therefore, User3 has the greatest structural influence according to this network analysis.
#Part C: Business recommendation
Based on the network analysis, User3 should be considered a priority candidate for the marketing campaign. User2 and User3 both have four direct connections, but User3 has the highest eigenvector-centrality score, approximately 0.509, while User2 has a score of approximately 0.482. This shows why counting connections alone is not enough. Eigenvector centrality also considers the structural importance of the users to whom each user is connected.
Eigenvectors are useful in this analysis because the components of the dominant eigenvector provide relative measures of structural influence within the network. A user connected to other important users can receive a higher score even if another user has the same number of direct connections. In this network, that distinction helps separate User3 from User2 even though their direct connection counts are equal.
However, network structure alone is not enough to determine the best person for a marketing campaign. The analysis does not include information such as follower count, engagement rate, audience demographics, geographic reach, brand relevance, previous campaign performance, authenticity, or cost. These factors could change the final business decision.
Therefore, User3 can be prioritized as the strongest candidate based on network structure, but additional marketing information should be collected before making the final decision. User2 may also be worth considering because User2 has the same number of direct connections and the second-highest eigenvector-centrality score.