ls
| : | Lists the contents of dir | \| | cd
| : | Changes current dir |\n> | pwd
| : | Print working directory | \| | mkdir
| : | Makes new directory |\n> | rm
| : | Removes a file or dir | \| | mv
| : | Move or rename files |\n> | sudo
| : | Elevates code privileges | \| | cat
| : | Concatenates files |\n\nThe task was completed by executing all the subtasks as shown in the image. Refer to the code below or this for more clarity.\n\n export \PS1=$ "\n $ pwd\n /home/cg/root/63e2386864f09\n $ cd /etc/..\n $ pwd\t\t\t\t\t\t\t//reads your location\n /\n $ mkdir /tmp/test\t\t\t //creates directory\n $ cd tmp/test\t\t\t\t\t//dives into mentioned path\n $ > blank.txt\t\t\t\t\t//creating blank file\n $ ls\t\t\t\t\t\t\t//listing the contents of the folder\n Blank.txt\n $ for i in {1..2600}; do mkdir F$i; done\t//creating 2600 folders\n $ > count.txt\t\t\t //a blank file to count and list them\n $ wc -l count.txt\t\t\t//initial count = 0\n 0 count.txt\n $ ls > count.txt\t\t //listing all the files in current folder into the blank file\n $ wc -l count.txt\t\t //final count = 2600 + 2\n 2602 count.txt\t\t //as both the count.txt and blank.txt files are included with new \n 2600 files\n $ echo "This is the file one." > file1.txt\t\n $ echo "This is the file two." > file2.txt\n $ cat file1.txt file2.txt > file.txt\t\t//concatenation of two text files\n $ cat file.txt\t\t\t\t //display of the concatenated content\n This is the file one.\n This is the file two.\n $\n\n| About | ... | Image |\n|---:|---:|:---:|\n| Main Code with following Outcomes | : | |\n| The Final Contents | : | |\n\n### Task 5: Kaggle Contest - Getting Started with Titanic #\n---\n| Date: 24/03/2023 | | Slot: 12:30 TO 03:00 pm |\n|:--:|:--:|:--:|\n\n This report summarizes the submission in the Kaggle contest which required the use of ML to create a model that predicts which passengers survived the Titanic shipwreck and was guided by Alexis Cook’s Titanic Tutorial which helped to get familiarize with the platform. \n \nThe objective of the task was to get familiarized on the platform and use the tutorial to build a predictive model that determines the survival rate of passengers on the Titanic based on various features. It required Python programming language, data manipulation techniques, and ML algorithms.\n \n \nThe tutorial provided a step-by-step guide to building the model and the pandas library for data manipulation and scikit-learn library for machine learning algorithms. Predictions were submitted on the Kaggle platform for evaluation. The model achieved an accuracy score of 77.5%. # 👈\n \n \nParticipating in the Kaggle contests provides the opportunity to explore the data science and machine learning skills of a real-world problem. The platform can also be used for accessing the datasheets to analyze for the projects, participating in the competitions, maintain the notebook, interact with the community and also provides the Kaggle Learn for users to develop new skills and techniques.\n\n### Task 6: Working with Matplotlib and Pandas\n---\n| Date: 04/04/2023 | �� | Slot: Online |\n|:--:|:--:|:--:|\n\n Matplotlib and Pandas are Python libraries used for data visualization (range of graphs and charts as line, bar, scatter, and pie charts) and for data manipulation and analysis, respectively. Matplotlib is a widely used tool for creating high-quality visualizations in Python. Pandas is commonly used for data cleaning, filtering, and transformation and for handling missing data and working with time series data.\n \n \nThe task was completed with the help of the reference article provided which went as follows, using the Replit, a cloud-based IDE that allows for easy collaboration and sharing of code, website in place of Jupyter:\n>1. Importing the libraries in python.\n>2. Loading the dataset in CSV format using the link provided.\n>3. Then the graph part can be initiated using the functions of Matplotlib such as .plot(), .bar(), .scatter() with respective parameters as shown in documentation.\n>4. The resulting plots were displayed within the Replit interface in the output section.\n\nThe task was completed successfully by working with these libraries. It would be so helpful as just with a few lines of code, complex visualizations can be created and interpreted.\n \n \n| | |\n|:----------:|:----------:|\n| Line Graph | Bar Graph |\n| | |\n| Scatter Plot | Histogram |\n---\n### Here goes the part 2 . . . # 👈"