일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- install
- index
- Splunk
- DFS
- RNN
- imread
- dataframe
- Python
- LSTM
- GitHub
- GT-S80
- CNN
- Lotto
- SPL
- 삼성소프트웨어멤버십
- SciPy
- mariadb
- Series
- E-P1
- pycharm
- 알고리즘
- keras
- javascript
- pip
- ipad
- Numpy
- mean
- synology
- pandas
- Button
- Today
- Total
목록list (3)
잠토의 잠망경
group 하고 그 안에서 가장 큰 것을 찾기 github var temp1 = (from t in temp group t by new {t.kind01} into g select new { g.Key, GList = g.OrderByDescending(z => z.num).First() }).Select(z => z.GList).ToList(); var temp2 = (from t in temp group t by new {t.kind01} into g select new { GList = g.OrderByDescending(z => z.num).First() }).ToList();
DataTable에서 List 로 변환하기 github using System; using System.Collections.Generic; using System.Data; using System.Reflection; namespace WCF_Util { public class MyConverter { public static List ConvertDataTable(DataTable dt) { List data = new List(); foreach (DataRow row in dt.Rows) { T item = GetItem(row); data.Add(item); } return data; } public static T GetItem(DataRow dr) { Type temp = typeof(T);..
지정된 위치의 File List를 읽기위한 방법 Github https://github.com/yiwonjae/Project_Python_Lib/blob/master/Files/Directorys.py import glob ''' 목적: 원하는 폴더에 있는 file 이름을 찾아서 return한다. i ) path : 폴더 및 파일 이름, *.txt, *.* 사용 가능 o ) list : file 이름 list ''' def findFiles(path:str)->list: fileList = glob.glob(path) print(fileList) return fileList if __name__ == '__main__': path = "../datas/sincontan*.txt" files = findF..