Archive: 2021/3

0

image upload

#이미지 올리기 1![](../image/r_markdown/pressure-1.png)

0

R aes

getwd() 위치확인rm(list = ls()) 모두 지우기 12345678910111213141516171819library(ggplot2)ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, colours = Species)) + geom_point(size = 5) + th

0

base guide

깃허브에 소스 업로드1git remote 현재 폴더의 원격 레퍼지토리 확인 명령어 1git remote add 원격저장소이름 https://github.com/유저네임/레퍼지토리네임.git 깃허브 저장소의 주소로 원격저장소 생성 작업폴더와 깃허브 저장소가 연동됨. 1git push -u origin master push

0

git clone

1git clone --depth 1 https://github.com/chinsun9/refactor-2019T1.git commit history 없이 clone 하는 방법–depth 옵션–depth 1 -> 가장 마지막 상태 클론

0

R-DAY1

12345# Factor 범주형 변수# 컴퓨터 <- 숫자로 인식# 문자 숫자 논리형 순으로 저장# ordered = TRUE# levels = c("정렬") 12345678910111213141516171819202122232425262728# 1. 사람과 관련된 데이터# - 고객 데이터 (CRM)# 2. 기계와 관련된 데이터# -

0

Adoring

123456789#include <iostream>int main(){ std::cout<<"첫번째 정수 입력 : "; std::cin>> inum1; return 0;}

0

temp

R 설치 R을 설치한다. URL: https://www.r-project.org/소스코드 작성 R 소스코드를 작성합니다.1234a <- 1b <- 2c <- a + bprint(c)