| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 |
- iterates
- AS
- pie charts
- SQL
- PANDAS
- line color
- break
- multiple lines
- Github
- self parameter
- MySQL
- PROJECT
- Text Analytics
- error
- Python
- Default X points
- matplotlib.pyplot
- data distribution
- Text mining
- machine learning
- For loops
- Else
- start exercise
- polynomial regression
- matplotlib
- __init__
- continue
- variables
- train/test
- line width
- Today
- Total
목록전체 글 (96)
Data Science Explorer
# Step 1: Create a GitHub Account If you don't already have a GitHub account, head to the GitHub website (github.com) and sign up for a new account. It's a straightforward process that requires only an email address and password. # Step 2: Create a New Repository Once you have a GitHub account, log in to your account and click on the "+" icon in the top-right corner of the page. From the dropdow..
Django, the program that we are learning is to create a server. A program that creates a web server and provides a framework and makes it easier to implement the server with it is called a web framework. It is all about receiving a request from the client and reponding to the client. The following description is to explain the flow of Django. Please refer to the image for your better understandi..
Getting and Creating Projects Command Description git init Initialize a local Git respository git clone ssh://git@github.com/[username]/[repository-name].git Create a local copy of a remote repository Basic Snapshotting Command Description git status Check status git add [file-name.txt] Add a file to the staging area git add -A Add all new and changed files to the staging area git commit -m "com..
Django Project Set-up Create a new Django project This command will create a new Django project with the given project name. django-admin startproject Create an app This command will create a new Django application within the project directory. django-admin startapp Development and Testing Run the development server This command will start the development server for your Django project. python m..
Django, a high-level Python web framework, has emerged as a leading choice for developers worldwide. In this article, we will explore what Django is, its history, key features, and how it empowers developers to create dynamic and feature-rich web applications. Key Features of Django: 1. Model-View-Template (MVT) Architecture: Django follows the Model-View-Template (MVT) architecture, which is si..
In the world of software development, collaboration and version control are crucial for maintaining efficient workflows, fostering teamwork, and ensuring the quality of code. GitHub and Git have emerged as essential tools that revolutionized the way developers work together and manage their codebases. This blog article explores the significance of GitHub and Git, their interrelation, and the imp..