Choose one of the most imaginative evoking occurrences in “A…

Choose one of the most imaginative evoking occurrences in “A Rose for Emily” (It comes to life in readers’ minds as they read; or someone may have an emotional and/or physical reaction to this instance in the work.) in Faulkner’s gothic short story and tell why most readers may share this same reaction.ANSWER THIS AND THEN– (QUOTE REQUIRED with lead in, (Citation) (Faulkner) and personal commentary on depth of quote)

Finding Proportions with Pandas You have a Twitter dataset (…

Finding Proportions with Pandas You have a Twitter dataset (df) with columns: user, tweet, when (morning/afternoon/evening), likes, retweet, followers, location. Write one line of Pandas code to find the proportion (not count) of tweets posted in each time period (morning, afternoon, evening) for each user. The output should show proportions (values between 0 and 1) rather than raw counts, with users as rows and time periods as columns. Hint: Use groupby(), value_counts() with a parameter, and unstack().