일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 삼성소프트웨어멤버십
- Numpy
- Splunk
- RNN
- install
- SPL
- mean
- synology
- Series
- pip
- mariadb
- GitHub
- pandas
- Button
- Python
- LSTM
- ipad
- GT-S80
- keras
- javascript
- SciPy
- imread
- DFS
- E-P1
- Lotto
- 알고리즘
- CNN
- dataframe
- pycharm
- index
- 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..