This dataset contains historical data of Google's stock prices and related attributes. It consists of 14 columns and a smaller subset of 1257 rows. Each column represents a specific attribute, and each row contains the corresponding values for that attribute.
The columns in the dataset are as follows:
Symbol: The name of the company, which is GOOG in this case.
Date: The year and date of the stock data.
Close: The closing price of Google's stock on a particular day.
High: The highest value reached by Google's stock on the given day.
Low: The lowest value reached by Google's stock on the given day.
Open: The opening value of Google's stock on the given day.
Volume: The trading volume of Google's stock on the given day, i.e., the number of shares traded.
adjClose: The adjusted closing price of Google's stock, considering factors such as dividends and stock splits.
adjHigh: The adjusted highest value reached by Google's stock on the given day.
adjLow: The adjusted lowest value reached by Google's stock on the given day.
adjOpen: The adjusted opening value of Google's stock on the given day.
adjVolume: The adjusted trading volume of Google's stock on the given day, accounting for factors such as stock splits.
divCash: The amount of cash dividend paid out to shareholders on the given day.
splitFactor: The split factor, if any, applied to Google's stock on the given day. A split factor of 1 indicates no split.
Dataset : https://www.kaggle.com/datasets/shreenidhihipparagi/google-stock-prediction
Solution : https://github.com/Dare-marvel/Data-Science-Bharat-Intern/blob/main/Task_1%20Stock%20Price%20Prediction%20Using%20LSTM.ipynb
Titanic is one of the most infamous shipwrecks in history. On April 15, 1912, during her maiden voyage, the Titanic sank after colliding with an iceberg, killing 1502 out of 2224 passengers and crew. This sensational tragedy shocked the international community and led to better safety regulations for ships.
While there was some element of luck involved in surviving, it seems some groups of people were more likely to survive than others.
In this challenge, we have to a predictive model that answers the question: βwhat sorts of people were more likely to survive?β using passenger data (ie name, age, gender, socio-economic class, etc).
PassengerId: Passenger Identity Survived: Whether passenger survived or not (0 = No, 1 = Yes) Pclass: Class of ticket, a proxy for socio-economic status (SES) (1 = 1st, 2 = 2nd, 3 = 3rd) Name: Name of passenger Sex: Sex of passenger Age: Age of passenger in years SibSp: Number of sibling and/or spouse travelling with passenger Parch: Number of parent and/or children travelling with passenger Ticket: Ticket number Fare: Price of ticket Cabin: Cabin number Embarked: Port of embarkation (C = Cherbourg, Q = Queenstown, S = Southampton)
Dataset : https://www.kaggle.com/datasets/rahulsah06/titanic
Solution : https://github.com/Dare-marvel/Data-Science-Bharat-Intern/blob/main/Task_2%20Titanic%20Classification.ipynb