It is said that libmysqlclient.so.18 does not exist
## Correspondence ### Installation ``` yum update -y yum install -y gcc mysql-devel mysql-libs #↓ Enter either # /lib64/mysql/libmysqlclient.so.18 # /usr/lib64/mysql/libmysqlclient.so.18 ``` ### If
[Python] Cumulative sum ABC179D
[ABC179D](https://atcoder.jp/contests/abc179/tasks/abc179_d) As a simple solution, ```math dp[i]:=Number of operation rows until reaching mass i ``` A dynamic programming method that tries all move
Excel sheet cannot be specified in sheet_name of pd.read_excel
The read_excel function used when reading data from Excel as a DataFrame, As mentioned in the reference, even if you specify the sheet name with sheet_name, no error occurs, but sometimes the sheet
Machine Learning: k-Nearest Neighbors
# Target Understand the k-nearest neighbor algorithm and try it with scikit-learn. # theory The k-nearest neighbor method is one of the supervised classification algorithms that does not acquire a
Call Matlab from Python to optimize
# Introduction Have you ever wanted to optimize a function created in Matlab with the optimization software (Optune this time) in python to make it feel good? I thought I could do something, so I tri
System trading starting with Python3: long-term investment
The content of this article is a brief summary of the content of "system trading (pannrolling) starting with Python 3". <A HREF="http://www.tradersshop.com/bin/showprod?a=17600&b=1&c=9784775991473">
I tried to create a server environment that runs on Windows 10
Currently, I'm making a strategy game that runs on the Web, but I was in trouble because I canceled the rented server for various reasons. Money ... no ... ;;; So, on my PC, it is Windows 10, but
[python] How to display list elements side by side
#### -Display the elements of the list side by side. ##### Example 1 ```python L = [1, 2, 3, 4, 5] print(*L) ``` ```python 1 2 3 4 5 ``` * List values can be int or str #### Example 2 ```python
Use custom tags with PyYAML
When I looked it up, there weren't any samples (even in English-speaking countries!), So it was easy. # Trigger I was writing code in Python that defines the behavior of a program in YAML, and I j
10 Most Popular Programming Languages in 2020
Original article: [https://jp.scrapestorm.com/tutorial/10-most-popular-programming-languages-in-2020/](https://jp.scrapestorm.com/tutorial/10-most-popular- programming-languages-in-2020 /) For begi
Getting Started with python3 # 3 Try Advanced Computations Using Import Statements
Hi, my name is beatbox4108. This time, I would like to write about _advanced calculation_ using __import statement __. # What is the import statement in the first place? You can use the __import st
AtCoder Beginner Contest 179
[A - Plural Form](https://atcoder.jp/contests/abc179/tasks/abc179_a) #### **`Python`** ```python S = str(input()) if S[len(S)-1] == 's': print(S + 'es') else: print(S + 's') ``` [B - Go
Good book "Deep Learning from scratch" on GitHub
# Purpose "Deep Learning from scratch--The theory and implementation of deep learning learned in Python" (July 28, 2017, first edition 10th edition issued, publisher O'Reilly Japan Co., Ltd.) I t
Automatically organized mp3s downloaded from Google Play Music using Python
# Start The news that Google Play Music will end at the end of December has been announced. Purchased and uploaded songs can be transferred to YouTube music as they are, but I do not know when the s
Linux permissions [under investigation]
[[Understanding] Linux permission basics and how to set them](https://eng-entrance.com/linux-permission-basic) [Linux permission check and change (chmod) (for super beginners)](https://qiita.com/sh
[Note] Based on the latitude and longitude of the CSV file, we created a script that extracts data in the target range and adds a mesh code.
# Purpose Based on the latitude and longitude of the CSV file, I created a script that extracts data in the target range and adds a mesh code. # Prerequisites - Windows10 --Python3 is already insta
plotly memorandum
plotly sample import ```python import plotly import plotly.graph_objs as go import pandas as pd import numpy as np ``` # Data read ```python df = pd.read_csv('https://raw.githubusercontent.com/
Predicting stock price changes using metal labeling and two-step machine learning
# 1 What about this article? Chapter 3 of Advanced in Financial Machine Learning introduces a two-step machine learning method that introduces the Triple-Barrier Method and Metalabel, and the curren
Yum command to access MySQL with Python 3 on Linux
## Run It may not be necessary if you do not use `mysqlclient`. ``` #For the time being yum update -y ``` ``` # /usr/A python directory that you want to execute under include can be created #Examp
An era when text classification by BERT is possible with 3 lines of code
table of contents 1.First of all 2. Introduction of the library 3. Test code on livedoor-corpus # Introduction In this article, we will introduce a library that allows you to easily perform mul
Write A * (A-star) algorithm in Python
# Overview --For study, I will write a search using the A \ * (A-star) algorithm in Python. --Use a simple grid maze. For the maze code etc., I wrote "[Write depth-first search in Python. ](Https:
[Write to map with plotly] Dynamic visualization with plotly [python]
python==3.8 plotly==4.10.0 # Introduction of map plot About easy scatter_geo and line_geo You can make a figure by specifying the longitude and latitude, or by specifying the country name fro
Data cleansing 2 Data cleansing using DataFrame
[Aidemy](https://aidemy.net) 2020/9/21 # Introduction Hello, it is Yope! I am a liberal arts student, but I was interested in the possibilities of AI, so I went to the AI-specialized school "Aidemy"
AtCoderBeginnerContest179 Review & Summary
AtCoder ABC179 This is a summary of the problems of AtCoder Beginner Contest 179, which was held on Saturday, 2020-09-19, in order from problem A, taking into consideration the consideration. (I did
Develop Windows apps with Python 3 + Tkinter (exe file)
# Introduction In the previous article (https://qiita.com/akagisho/items/7dfa6304b8233b85fa13), I used Tkinter to create a sample Windows application. This time, you can use "[PyInstaller](https:/
How to run Self bot on Discord.py [Easy vandalism! ]
# About Self bot The Self bot, which is also included in the title of this article, may have come to this article without some understanding. A brief explanation for such a person "Make non-BOT use
Roadmap for publishing Python packages
We have summarized the steps required to create and publish a Python package. We plan to add links to reference materials at a later date or create another article for specific usage and details of t
Data cleansing 1 Convenient Python notation such as lambda and map
Aidemy https:// aidemy.net 2020/9/21 # First of all, from the greetings ... Nice to meet you, this is Ngahope! Although I am a liberal arts student, I started attending the AI learning school "Aid
Make Visual Studio Code autocomplete for python external libraries
Memo after studying Python If I was writing python in vscode, the external library would not be complemented and development would be inefficient. ** I want to be able to complement external libra
Bayesian optimization very easy with Python
2020.09.22 I wrote an article that follows this article. [Abort optimization with early stopper of scikit-optimize](https://qiita.com/saiaron/items/8bf6cdf411b48a5ea59e) # Preface Since I sometime