Posted at 15:22h
in
Blogs
by cndro
There are different methods used in communicating with the Tableau Server, but one of the outstanding methods is through the Tableau Server Client (TSC). The tableau server is one of the tools in the tableau software product suite. You can read about tableau and it’s tools here. In this...
Posted at 15:21h
in
Blogs
by cndro
Most times in Python, you get to import just one file using pandas by pd.read(filename) or using the default open() and read() function in. But news flash, you can actually do more!! In this article, I am going to show you how to import multiple...
Posted at 15:19h
in
Blogs
by cndro
In Tableau, strings or string data, are data made of text. String functions exist to help you manipulate your string data. There about twenty string functions in Tableau. In this article, I am going to introduce you to ten (10) important string functions in Tableau,...
Posted at 15:18h
in
Blogs
by cndro
Salesforce is a CRM which stands for Customer Relationship Management. In very simple terms, it is an online tool that helps businesses manage their customer information (basically a database of customers) efficiently. Salesforce is a software for every organization, and in this article, I’m going to...
Posted at 15:17h
in
Blogs
by cndro
Big Data Analytics tools are generally used to provide substantial analysis of a large set of data. It helps to find market insights, trends, customers’ preferences, and diverse information. These tools vary in features, efficiency, and complexity. In this article, I have compiled the top 7 data analytics tools this year.
Here...
Posted at 15:17h
in
Blogs
by cndro
SQL is something you probably have come across in several articles or on social media. The first time I heard about SQL was from a friend’s retweet on Twitter. Today, I want to share with you an educative article on SQL, and why SQL is...
Posted at 15:16h
in
Blogs
by cndro
Data encryption is basically the process of securing information in a way that it can only be accessed by a specific key. In this article, I am going to show you how to encrypt your s3 bucket using the s3 server-side encryption (SSE-S3). You can...
Posted at 15:15h
in
Blogs
by cndro
WS Key Management Service (KMS) is an Amazon Web Services product that allows administrators to create, delete, and control keys that encrypt data stored in AWS databases and products. In this article, I am going to walk you through how to encrypt data using the...
Posted at 15:14h
in
Uncategorized
by cndro
Conditional formatting is a feature included in spreadsheet creation programs. It automatically applies formatting to a cell when the data in that cell meets a specific criteria. In this post, I will be sharing with you a video walkthrough on how to conditionally format an...
Posted at 14:22h
in
Uncategorized
by cndro
Conditional Statements in Python are used to decide the flow of execution of a program or code in Python. It’s like telling your program, “Hey, do this particular thing if it meets this condition, or if it doesn’t”. In Python, conditional statements are handled with “IF”. In...