UNION ALL and UNION LIKE and ILIKE NOT and ! and <> DATE_PART() and DATE_TRUNC() UNION ALL and UNION UNIONThe UNION command is used to select related information from two tables, much like the JOIN command. However, when using the UNION command all selected columns need to be of the same data type. With UNION, only distinct values are selected. UNION ALLThe UNION ALL command is equal to the UNION command, except that UNION ALL selects all values. The difference… Continue reading Understand the difference between sql statements
Category: محمد حسین ابراهیم زاده
رفع مشکل اضافه شدن خودکار کیبورد جدید در ویندوز ۱۰
جای کیبورد فارسی معمولی ویندوز استفاده کنید، خود ویندوز ۱۰ به صورت خودکار و بدون اجازه گرفتن از شما، کی بورد دیفالت خودش رو گاها اضافه میکنه به لیست کیبوردها. این یعنی وقتی مثلا تغییر زبان کیبورد میدید دو بار باید فارسی رو بزنید و این خیلی روی اعصابه!!
خلاصه هنر جنگ سان تزو
۱) خودت و دشمنت رو بشناس. حالا میگه دشمن، منظورش رقیب و هدف و … هم هست. مثلا برای مصاحبه، اول خودت بدون دقیقا چیکار بلدی و چی میخوای، بعد درباره مصاحبه کننده و شرکتی که داری میری مصاحبه خوب تحقیق کن. لینکداین پیداش کن. علاقههای مشترکتون رو بشناس و … ۲) از نقاط قوت… Continue reading خلاصه هنر جنگ سان تزو
Some Pandas sample Codes
Orders = df[[‘OrderID’,’VendorID’,’ShamsiYearMonth’,’CustomerID’,’NthCustomerOrder’]].dropna().reset_index()
Orders.drop(columns = ‘index’ , inplace = True)
Orders.drop_duplicates(keep=’first’,inplace= True , ignore_index=True)
Vendor Analysis (CRISP-DM)
CRISP
5 ways to apply an IF condition in pandas DataFrame
from Need to apply an IF condition in Pandas DataFrame? If so, in this tutorial, you’ll see 5 different ways to apply such a condition. Specifically, you’ll see how to apply an IF condition for: Set of numbers Set of numbers and lambda Strings Strings and lambada OR condition Applying an IF condition in Pandas DataFrame… Continue reading 5 ways to apply an IF condition in pandas DataFrame
NPS : Net Promoter Score چیست و به چه کار آید؟!
NPS (Net Promoter Score) یکی از شاخص های کلیدی عملکرد در CRM است که به طور ویژهای مورد توجه متخصصان مدیریت ارتباط با مشتری قرار میگیرد. این شاخص به شکلی غیرمستقیم، رضایت و وفاداری مشتریان یک کسب و کار را میسنجد
شروع با گیت
منبع منبع اصلی در حال حاضر گیت یکی از محبوبترین سیستمهای کنترل نسخه در بین توسعهدهندگان است. میتوانید با استفاده از گیت تغییرات را دنبال کنید و پروژهها را با چندین توسعهدهنده دیگر هماهنگ نمایید. پروژههای متن باز نیست اکثرا از گیت استفاده میکنند، میتوانید آنها را روی گیتهاب، گیتلب و یا Bitbucket مشاهده کنید.… Continue reading شروع با گیت
Practical RFM analysis to increase repeat sales
from This method as the easiest way to visualize the behavior of the clients is important. Numbers mean nothing if they do not change our actions tomorrow.Twit it This time I will share with you the experience and tips how to benefit from RFM even without a three-year sales history. We provided the RFM… Continue reading Practical RFM analysis to increase repeat sales
Anomaly Detection
Introduction: Anomaly Detection From Anomaly detection is a technique used to identify unusual patterns that do not conform to expected behavior, called outliers. It has many applications in business, from intrusion detection (identifying strange patterns in network traffic that could signal a hack) to system health monitoring (spotting a malignant tumor in an MRI scan),… Continue reading Anomaly Detection