Tally
Use Python to process & analyse survey data
Tally, the enterprise version of Quantipy, opens up the world of Python for survey data professionals
Video
Modernise your
data workflow

Datasmoothie can automate your survey data pipeline, all the way from raw data to deliverable results, like Excel talbes, PowerPoints and dashboards.

Request Demo
The modern toolkit
Join the world of Python data professionals
Python is the most popular programming language for data professionals for a reason. With Tally, you can use Python for all your survey data and discover what the buzz is about.
Aimed at people data

Tally offers support for native handling of special data types like multiple choice variables, statistical analysis using case or observation weights.

Connect directly to database

Connect directly to a database by supplying Tally with a json URL or database connection. As soon as your data is updated, your outputs are as well.

Rich meta data schema

A rich and flexible metadata schema provides support for a wide range of data structures and variable types including grids, multiple response and single response categoricals. Tally also understands SPSS metadata.

Data processing

Powerful, metadata-driven cleaning, editing, recoding and transformation of datasets, including creating derived variables, NETs and weights.

Build tables and other outputs with Python

Excel tables and other outputs can be built entirely with Python. You have complete control over what each sheet and cell shows, from showing unweighted bases and significance test results to descriptive statistics.

Add survey data to your data warehouse

Tally can act as an ETL or OLAP layer in your data warehouse. It connects to all major survey providers, transforms data into a unified model and exposes endpoints to query the data for results.

Request Demo
Data Processing
Use Python for all of your data processing and reporting needs.

Using Tally gives you access to your survey data in Python, or any other programming language, since Tally is a RESTful API.

Tally's thoroughly documented methods include complex logic structures to filter data and derive variables, a RIM weighting algorithm and more.

Python
Ruby
Javascript
    import tally
    
    ds=tally.DataSet(api_token=[your_token])
    ds.use_spss('my_spss_file.sav')
    ds.use_confirmit(api_token)
    ds.use_unicom(mdd_file, ddf_file)
    
    ds.build_powerpoint(
        filename='my_powerpoint.pptx',
        powerpoint_template='Branded_Template.pptx',
        x=['q1', 'q2', 'q3'],
        y=['gender', 'locality']
    )
    require "uri"
    require "net/http"        
    url = URI("https://tally.datasmoothie.com/tally/crosstab/")
    https = Net::HTTP.new(url.host, url.port)
    https.use_ssl = true        
    request = Net::HTTP::Post.new(url)
    request["Authorization"] = "Bearer [token]"
    form_data = [['params', '{"x":["q1"], "y":["gender"]}'],
                ['spss', File.open('data.sav')]]
    request.set_form form_data, 'multipart/form-data'
    response = https.request(request)
    puts response.read_body
    
    
    var data = new FormData();
    data.append("params", "{\"x\":[\"q1\"], \"y\":[\"gender\"]}");
    data.append("spss", fileInput.files[0], "Example Data (A).sav");
    var xhr = new XMLHttpRequest();
    xhr.withCredentials = true;
    xhr.addEventListener("readystatechange", function() {
        if(this.readyState === 4) {console.log(this.responseText);}
    });
    xhr.open("POST", "https://tally.datasmoothie.com/tally/crosstab/");
    xhr.setRequestHeader("Authorization", "Bearer 352c7586c21119be6439dbe539a0d1003b15eedf");
    xhr.send(data);    
    
Data Warehouse
Add your survey data to your data warehouse

Your data warehouse or data lake should include your survey data.

  • Meta data should be preserved
  • Querying the data and testing for significance should be easy
  • It should handle millions of responses

The Tally API can be hosted in our cloud, your cloud or on premises.

survey
Works with all major survey platforms
Tally can connect directly to major survey software platforms such as Unicom/Dimensions, Qualtrics, Survey Monkey, Nebu, and Forsta/Confirmit. If your platform isn't already supported, we can add it.
workflow
Map your workflow and automate
Tally connects directly to most survey software platforms such as Dimensions, Qualtrics, Survey Monkey, QuestionPro, Nebu, and Confirmit. If your platform isn't already supported, we can add it.
  • Analyse/Model (Sig-test)
  • Publish
  • Merge/derive
  • Clean
  • Weight
Data tables
Build beautiful
data tables

Only a few lines of Python can create highly customised and branded Excel tables with any content you need from weights, to descriptive statistics, to sig-tests.

Request Demo Learn more
Automated
Automated wave/language reporting
PowerPoint files and Excel tables can be automatically scheduled and emailed to stakeholders. We set it up for you, so it can generate multiple, branded PowerPoint documents in multiple languages - whatever your client is looking for.
Want to try it out? Get in touch:
Request Demo
Or email us at: info@datasmoothie.com