분류 전체보기(137)
-
Polars Basic Syntax and Data Analysis Sample (with Scikit-learn)
0. Introduction Polars is a data analysis and processing tool implemented in Rust that offers superior processing performance for large-scale data and low memory usage. Due to these advantages, Polars is highly effective for large-scale data processing. It provides a similar API to Pandas but utilizes C++ and Rust for better performance. Furthermore, it is designed to ensure interoperability bet..
2023.03.16 -
polars 기초 문법 및 데이터 분석 샘플(Scikit-learn)
0. 서론 데이터 분석 및 처리에 널리 사용되는 Pandas에는 유연성과 편리성 때문에 많은 사용자들이 활용하고 있습니다. 그러나 대용량 데이터에 대한 처리 속도나 메모리 사용 등의 한계 때문에 대규모 데이터를 다루기에는 한계가 있습니다. 이러한 문제를 해결하기 위해 새로운 데이터 처리 도구로서 polars가 등장하였습니다. 1. polars란 무엇인가? polars는 Rust로 구현된 데이터 분석 및 처리 도구로서 대용량 데이터에 대한 처리 성능이 뛰어나고, 메모리 사용량이 적습니다. 이러한 장점 덕분에 polars는 대규모 데이터 처리에 매우 효과적입니다. polars는 Pandas와 비슷한 API를 제공하며, 더 나은 성능을 위해 C++과 Rust를 사용합니다. 또한, Python과 Rust 간의 ..
2023.03.16 -
Comment récupérer l'espace disque après la suppression de données dans MongoDB
Récemment, en surveillant MongoDB, j'ai été rappelé de l'importance du DML (langage de manipulation de données) - la capacité à interroger (SELECT), modifier (UPDATE), stocker (INSERT) et supprimer (DELETE) des données. J'ai rencontré un problème surprenant avec MongoDB : après la suppression de données, l'espace disque n'était pas restitué. L'utilisation du disque de notre serveur MongoDB avait..
2023.03.15 -
python datetime to unix time, convert to string
Today, I will summarize the basic syntax for converting datetime-related types in Python that I always search for on Google. The syntax that I always look up is as follows: (It's difficult to memorize...>> 2020-09-13 21:26:40 print( type(int_to_date) ) >> 7. Let's convert datetime to Unix time. To be precise, it is a float value rather than an integer...;; print( int_to_date ) >> 2020-09-13 21:2..
2023.03.15 -
Review of AWS Certified SAA Exam (Dump usage prohibited)
[What is saa.??] The AWS Certified Solutions Architect - Associate (SAA) certification is a popular credential offered by Amazon Web Services (AWS) for professionals who design and deploy scalable, highly available, and fault-tolerant systems on the AWS platform. This certification is designed to validate an individual's expertise in AWS architecture, including various AWS services, architecture..
2023.03.15 -
Managing MongoDB Logs with Logrotate ( Logs Delete )
In this article, we delve into the common pitfalls that MongoDB beginners encounter when it comes to log management. One such mistake is failing to realize that logs constantly accumulate and take up precious disk space. Compounding this issue is the fact that the MongoDB installation manual and guide do not offer any guidance on log management, which can leave novice administrators struggling t..
2023.03.15