Blender 3d Visualization

broken image


  1. Blender 3d Models
  2. Blender 3d Download
  3. Blender 3d Visualization Tool
  4. Blender 3d Visualization Tool

In the past, I have written about the potential for 3D rendering and virtual reality to improve multivariate data visualization. I my new book, The Blender Python API, I have recorded and explained some of the methods I use for multivariate data visualization in Blender.

Overview -3D Scientific Visualization with Blender.Science domain and data of astronomy.What and why we need to visualize data.All about the visualization tool Blender.Examples.Intro to using the interface Dr. Kent 3D Visualization. Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline—modeling, rigging, animation, simulation, rendering, compositing and motion tracking, video editing and 2D animation pipeline.

This article is a taste of what can be found in that book, and an explanation of how I rendered the example images in the aforementioned article.

Reading in the Data

For this example, we will use Fisher's Iris data. Create your own 3d model. The copy we will use can be downloaded here: Fisher's Iris CSV. This is the hardest part of the whole script, because we do not have access to the pandas library by default in Blender Python. So, we will read in our data via a list of lists, making sure to store the header in a separate list of equal dimension.

We place this code at the beginning of the following scripts to load in the data before plotting. The data is downloaded at run-time via the urllib library, so make sure you have internet connection.

Overview of Iris Data

The Iris data has 5 columns and 150 rows. The first 4 columns are numeric data that describe the shape of the flower. The last column is a string variable that specifies the Iris's subspecies. This subspecies can be Setosa, Versicolor, or Virginica. This example will attempt to plot all five variables in the same 3D rendering, starting with 3 dimensions and moving up to 5 dimensions.

Plotting 3 Dimensions

Blender 3d Models

The most natural way to plot 3D data in 3D is to map one numeric variable to each axis, X, Y, and Z. We will create circles, scale them down for easy viewing, then place them in the 3D space according to the first three numeric rows of the Iris data. Remember to paste this after the above script in the same text file to run it correctly.

Plotting 4 Dimensions

Blender 3d Download

To plot the fourth numeric column of the Iris data, we can control some aspect of the sphere that does not alter its position. We will choose the size of the sphere, in this case. We will do the same process as above, except we will make the size of the spheres proportional to the square root of the numeric column. Paste the following after the first script to both position and resize the sphere according to the data.

Blender 3d Visualization Tool

Plotting 5 Dimensions

Finally, we will alter the shape of the data point to represent the type of flower. We have chosen spheres, cubes, and cones to represent Setosa, Versicolor, and Virginica flowers, respectively.

Blender 3d Visualization Tool

Blender 2.79

Summary

The final script can plot 5 dimensions of multivariate data in less than 40 lines of code. The Blender Python API is just cool. I highly recommend that anyone interested run these examples all the way through. While I can screenshot the result for this article, it feels extremely cool to use Blender's mouse controls to fly in and out of the data cloud. Personally, it helped me understand this deceptively simple data set that, until now, I was unable to wrap my head around.

For an in depth explanation and access to helpful Blender Python modules, check out Chapter 2 of The Blender Python API (Apress).





broken image