카테고리 없음

- 샤이니 기본 사용 방(datable-DT)소스)5-3-2.R시각화

하트쏠라씨 2021. 5. 22. 03:00

<간단한 샘플 예제-소스를 분리하지 않은 형태>

<소스를 분리한 데이터 테이블 예제>
예제 테스트 시 경고
https://datatables.net/man ual/tech-notes/4#null-or-undefined-data4. Warning: Requested unknown parameter This is possibly the most cryptic warning message that DataTables will show. It is a short error message as it needs to cope with all of the data source options that DataTables has, but flexible enough to convey information for each of these cases, hence why i...datatables.net
https://datatables.net/upg rade / 1 . 10 - convertConverting parameter names for 1 . 10 DataTables 1 . 10 introduces the use of camelCase notation rather than the old Hungarian notation style that was used in v1 . 9 and earlier . The new API also follows this new naming scheme . The change is fully backwards compatible and you can continue to use the old v ... datatables . netwarning - ui . Rwarning - server . R

 

Warning을 해결하기 위해 다음과 같이 소스를 변경하였다.* DT 활용 변경 후 ui.R 변경 후 server.R

참조 사이트 https://osh88itopia.tistory.com■*기본 테이블 형태의 데이터를 출력하는 샤이니 기본 코드 install.packages("DT") #ᅳ면 주석으로 막기 library ( DT ) library ( shiny ) library ( ggplot 2 ) # emp < - read . csv ( " d : emp . csv " , header = T ) # emp 선 .. osh88itopia.tistory.com 参照 例