일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Q-Q 플롯
- 날짜 시간 데이터 전처리
- 주성분 줄이기
- 선형 판별 분석 LDA
- 지수평활법
- R과 Python
- 데이터 분석 프로세스
- 군집화 시각화 방법
- 범주형 데이터
- 순서형 데이터
- 시계열 특성을 고려한 이상치 탐지
- custom vision
- 상관 분석
- 시계열 상관 분석
- 다변량 분석
- ARMA 모델링
- Z-점수 기반 이상치 탐지
- Python
- 시계열 모델링
- 명목형 데이터
- 상자 그림
- 계절성 모델
- ARIMA 모델링
- 데이터 종류에 따른 분석 방법
- 데이터 수집 및 전처리
- 상위포지션
- 다중상관분석
- 최소-최대 정규화
- 데이터의 차원 축소
- 주성분 분석
Archives
- Today
- Total
me made it !
[React] 이렇게 하면 안되나!? 본문
반응형
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
import React, { Component } from 'react';
import "react-native-gesture-handler";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/native-stack";
import Main from "./screens/Main";
import Login from "./screens/Login";
import Details from "./screens/Details";
const Stack = createStackNavigator();
export default function App() {
return (
<NavigationContainer>
<Stack.Navigator initialRouteName="Main">
<Stack.Screen name="Main" component={Main} />
<Stack.Screen name="Login" component={Login} />
<Stack.Screen name="Details" component={Details} />
</Stack.Navigator>
<View style={styles.container}>
<Text>~시작화면~</Text>
<StatusBar style="auto"/>
</View>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
반응형
'취준 > 프로젝트' 카테고리의 다른 글
[삽질 기록] (0) | 2023.09.13 |
---|---|
자료 조사 (0) | 2023.09.11 |
[React] Moving between screen (0) | 2023.09.07 |
vsc 단축키 모음 (0) | 2023.09.05 |
AI 프로젝트 (0) | 2023.09.04 |