Plots_for_housing_price
Hotel_occupancy_rate_over_years
During June, July, and August, hotel occupancy tends to be at its peak. This is primarily due to increased tourism during the summer months, driven by factors such as school vacations, favorable weather, popular tourist attractions, business events, and family vacations. These months are characterized by higher demand for accommodations, leading to elevated hotel occupancy rates.
Plot for years vs logan_passengers_over_years
From the above graph it can be observed that loagn_passengers incrsed with increase in years.
The below methods can be used to plt the graph
df = pd.read_csv(‘eci.csv’)
columns_to_plot = [‘logan_passengers’]
plt.figure(figsize=(10, 6))
sns.lineplot(data=df, x=’Year’, y=columns_to_plot[0], color=’skyblue’)
plt.xlabel(‘Year’)
plt.ylabel(‘Logan Passengers’)
plt.title(‘Line Graph of Logan Passengers Over Years’)
plt.show()
Re-uploading project2
Smooth hisogram for loan international flights and hotel occupancy rates
The highest value in the logan international flights is 5260 and 2578
Economic_indicators_project3_blogs
The dataset is renamed as eci.csv with has 19 attributes and 84 rows
when we use eci.describe() we get the following results:
ARIMA
ARIMA, or AutoRegressive Integrated Moving Average, is a powerful time series forecasting model widely used in various fields. It consists of three main components: autoregressive (AR), integrated (I), and moving average (MA). The autoregressive component involves predicting future values based on past values, while the integrated component focuses on differencing to make the time series stationary. The moving average component considers the average of past prediction errors. The model is denoted as ARIMA(p, d, q), where ‘p’ is the autoregressive order, ‘d’ is the differencing order, and ‘q’ is the moving average order. By identifying these parameters based on the characteristics of the time series data, ARIMA helps forecast future values, particularly when there is a noticeable trends.
NLP
Natural Language Processing (NLP) is a field of artificial intelligence (AI) that focuses on enabling computers to understand, interpret, and generate human language in a way that is both meaningful and useful. In simpler terms, NLP allows computers to read, decipher, and respond to human language in a way that is valuable.
NLP involves the application of computational techniques to process and analyze large amounts of natural language data. It encompasses tasks such as:
1. Text Understanding: Extracting meaning from written or spoken language.
2. Language Translation: Translating text from one language to another.
3. Speech Recognition: Converting spoken language into written text.
4. Sentiment Analysis: Determining the sentiment or emotion expressed in a piece of text.
5. Chatbots: Building computer programs that can engage in conversation with users.
NLP is at the core of various applications we encounter daily, such as virtual assistants (like Siri or Alexa), language translation services, and predictive text suggestions on your smartphone. Essentially, it enables computers to interact with human language in a way that makes communication between humans and machines more intuitive and effective.
Sentimental analysis
Sentiment analysis is an NLP technique that categorizes text as positive, negative, or neutral to understand the emotional tone. It involves preprocessing text, using machine learning, and finds applications in:
1. Business Insights:
– Analyzing customer feedback, reviews, and sentiments to enhance products or services.
2. Social Media Monitoring:
– Understanding user opinions and trends on platforms like Twitter, Facebook, etc.
3. Financial Market Analysis:
– Assessing market sentiment by analyzing news articles, social media, and financial reports.
4. Customer Service:
– Monitoring and responding to customer sentiments for improved support.
5. Political Analysis:
– Gauging public opinion during elections or political events.
Sentiment analysis helps organizations make data-driven decisions and stay attuned to public sentiment in various domains.