ORA-00933: SQL command not properly ended위 오류는 SQL이 제대로 작성되지 않아서 발생하는 문제이다. 검색을 해보면 대부분 WHERE을 WHER로 작성하는 등의 사소한 문법 오류가 많았다. 나의 경우에는 문법은 정확하게 맞는데 왜인지
Ref: Kaggle Data Visualization Course2017 ~ 2018 Spotify의 Daily streams 인턴십때 Line plot은 일반적으로 x축에 Time Series, y축에 집계량을 표현하는 것이다는 피드백을 받았다. 항상 Plot을 그
Ref: Kaggle Data Visualization Course위 데이터 중 bmi와 charges를 scatter plot으로 시각화 해보자.BMI와 Charges(보험금 청구료)는 어느정도 Positively Correlated 하다고 볼 수 있다. BMI가 높
반드시 Dockerfile 첫 번째 줄에 적어야한다. Parser directive라고 표현하며 도커 빌더에게 도커 파일을 파싱할 때 어떤 문법으로 파싱해야하는지 알려주는 역할을 한다.docker/dockerfile:1은 항상 가장 최신의 version 1 syntax
지난 튜토리얼에서 간단한 파이썬 애플리케이션을 만들었고 image를 만드는 Dockerfile을 생성했다. 말아놓은 이미지를 Run하여 애플리케이션이 정상적으로 동작시킬 수 있었다.A container is a normal operating system process
흔히 "도커 이미지를 말아서 어쩌구 저쩌구"라는 표현을 쓴다.준비사항Python 3.8 이상Docker running locally. installation Visual Studio CodeFlask framework를 사용하는 간단한 파이썬 애플리케이션을 만들어보자.
DataFrame에 대해 정리하기 앞서, 벤 다이어그램을 사용해서 기본적인 개념에 대해 익혀보자. 왼쪽 원은 대학교 학생들이고 오른쪽 원은 대학교 스탭이다. 겹치는 부분은 학생이자 스탭인 사람들이다. 각 원을 하나의 DataFrame이라고 할 때, 두 원의 합집
위 오류가 발생하는 이유는 객체를 call했기 때문이다. 쉽게 말해 Dataframe\[] 을 해야하는데 Dataframe()으로 소괄호로 작성한다면 위 오류가 발생한다.
좋은 Article을 읽게 되어 헷갈리던 ML metrics에 대해 정리해보고자 한다.F1 score는 분류 모델에서 사용되는 머신러닝 metric(평가지표)이다.
You are given an array prices where pricesi is the price of a given stock on the ith day.You want to maximize your profit by choosing a single day to
Given an integer array nums, return an array answer such that answeri is equal to the product of all the elements of nums except numsi.The product of
Given an integer array nums of 2n integers, group these integers into n pairs (a1, b1), (a2, b2), ..., (an, bn) such that the sum of min(ai, bi) for a
Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k]
Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each in
Given a string s, return the longest palindromic substring in s.Example 1:Example 2:Constraints:이 문제는 2칸짜리 윈도우, 3칸짜리 윈도우를 만들어서 왼쪽에서 오른쪽으로 이동하면서 palind
Given an array of strings strs, group the anagrams together. You can return the answer in any order.An Anagram is a word or phrase formed by rearrangi
You are given an array of logs. Each log is a space-delimited string of words, where the first word is the identifier. There are two types of logs:
Given a string paragraph and a string array of the banned words banned, return the most frequent word that is not banned. It is guaranteed there is at
A phrase is a palindrome if, after converting all uppercase letters into lowercase letters and removing all non-alphanumeric characters, it reads the