Knowledge
cancel
Showing results for 
Search instead for 
Did you mean: 

Knowledge Base Articles

Top 4 Reasons Your View Isn't Materializing

Ever have a SQL view that won't seem to materialize? Getting that dreaded red X even when results are showing in the View editor? Well follow the below instructions to turn those red X's into green checks!1. YOUR SQL SYNTAX ISN'T REDSHIFT COMPATIBLE....

intapiuser by Community Team Member
  • 680 Views
  • 0 comments
  • 0 kudos

Weighted Vs Unweighted Averages

When summarizing statistics across multiple categories, analysts often have to decide between using weighted and unweighted averages. An unweighted average is essentially your familiar method of taking the mean. Let's say 0% of users logged into my s...

intapiuser by Community Team Member
  • 2260 Views
  • 0 comments
  • 1 kudos

Test For Normal Distribution Of Data With Python

One of the first steps in exploratory data analysis is to identify the characteristics of the data, importantly including a test for distribution patterns. In this example, learn how to check if your data is normally distributed in Python with a visu...

intapiuser by Community Team Member
  • 3196 Views
  • 0 comments
  • 0 kudos

Get Yesterday's Date

Often times, we want to analyze data with the date from yesterday. How do we auto-populate yesterday's date? There are a few formats that we can use! The syntax below lets us get yesterday's date with timestamp:select dateadd(day,-1,getdate()) To onl...

intapiuser by Community Team Member
  • 12535 Views
  • 0 comments
  • 0 kudos

Pivoting And Melting Dataframes

Here's the scenario: you just used SQL and have an output that shows the results you want, but it isn't optimally displayed. Instead of writing cumbersome case when statements, unions/union alls, we can quickly use a few short functions in Python or ...

intapiuser by Community Team Member
  • 435 Views
  • 0 comments
  • 0 kudos

Gantt Chart For Team Workflows

Gantt charts are a great way to show which projects and tasks different teams are working on at a given time. This chart type is heavily used by Project Managers, Task Managers, and anyone else managing multiple workflows.Using Periscope Data's Pytho...

intapiuser by Community Team Member
  • 950 Views
  • 0 comments
  • 0 kudos

Transposing Tables Using Python Pandas

Pandas makes transposing tables beautifully simple! Below are a couple examples using the example SQL output below: This first Python snippet allows you to define your own column headers: # SQL output is imported as a pandas dataframe variable called...

intapiuser by Community Team Member
  • 3370 Views
  • 0 comments
  • 0 kudos

Custom Date Range Filter

Update: Sisense for Cloud Data Teams now allows you the ability to create additional date range filters without having to go through the below workaround. Refer to our docs here under "Additional Date Range Filters"Sometimes, users would like to appl...

intapiuser by Community Team Member
  • 1966 Views
  • 0 comments
  • 0 kudos

Getting Around Overlapping Data Labels With Python

A common hazard when adding data labels to a chart, is that often times the data labels will overlap when there are two points located relatively close to one another. Fortunately, the flexibility of python allows us a way around overlapping data lab...

intapiuser by Community Team Member
  • 7092 Views
  • 0 comments
  • 0 kudos

Creating Charts With Broken Axes

Sometimes outliers are just in the way of chart creation and we want to put them in their own section of chart. Python can help us do that! I started with a data set like "count of users created by month" where there were only values for Jan-Feb and ...

intapiuser by Community Team Member
  • 2805 Views
  • 0 comments
  • 0 kudos

A Beginner's Guide To Linear Regression Models In Python

Does your team prefer Python over R? Or are you looking to brush up your on your Python skills? We'll walk through a simple example of a linear regression model using the scikit-learn library in the Python/R Integration. In this exercise, we will als...

intapiuser by Community Team Member
  • 1932 Views
  • 0 comments
  • 0 kudos

Remove Whitespace Margins From Plotly Charts

Plotly is wonderful, but sometimes you end up with a chart that looks like it's too small, or that it's not taking up all the space. Why does it do that? In this post, you'll learn how to fix that:With Python, this is actually very easy. We just need...

intapiuser by Community Team Member
  • 10818 Views
  • 0 comments
  • 0 kudos

Donut Charts — Plot.Ly

The above example is taken from plot.ly's documentation here. A few updates have been made to the example to make it easier to use within the Sisense for Cloud Data Team's Python/R integration.Pie charts with a hole in it give us donut charts. Now ma...

intapiuser by Community Team Member
  • 732 Views
  • 0 comments
  • 0 kudos

Horizontal Funnel Chart — Plot.Ly

Visually it can be preferable to display a funnel chart horizontally. The following code outlines how to do this. Note, your SQL output must have 2 columns titled as follows: phases: the names of each stage along the funnel values: the value associat...

intapiuser by Community Team Member
  • 706 Views
  • 0 comments
  • 0 kudos
Labels
Community Toolbox

Recommended quick links to assist you in optimizing your community experience:

Developers Group:

Product Feedback Forum:

Need additional support?:

Submit a Support Request

The Legal Stuff

Have a question about the Sisense Community?

Email [email protected]

Share this page: