diff --git a/.Rhistory b/.Rhistory new file mode 100644 index 000000000..e69de29bb diff --git a/.here b/.here new file mode 100644 index 000000000..e69de29bb diff --git a/00-intro.md b/00-intro.md new file mode 100644 index 000000000..df4f6fe6e --- /dev/null +++ b/00-intro.md @@ -0,0 +1,437 @@ +--- +title: Before we Start +teaching: 25 +exercises: 15 +source: Rmd +--- + + + +::::::::::::::::::::::::::::::::::::::: objectives + +- Install latest version of R. +- Install latest version of RStudio. +- Navigate the RStudio GUI. +- Install additional packages using the packages tab. +- Install additional packages using R code. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How to find your way around RStudio? +- How to interact with R? +- How to manage your environment? +- How to install packages? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## What is R? What is RStudio? + +The term "`R`" is used to refer to both the programming language and the +software that interprets the scripts written using it. + +[RStudio](https://rstudio.com) is currently a very popular way to not only write +your R scripts but also to interact with the R software. To function correctly, +RStudio needs R and therefore both need to be installed on your computer. + +To make it easier to interact with R, we will use RStudio. RStudio is the most +popular IDE (Integrated Development Environment) for R. An IDE is a piece of +software that provides +tools to make programming easier. + +## Why learn R? + +### R does not involve lots of pointing and clicking, and that's a good thing + +The learning curve might be steeper than with other software, but with R, the +results of your analysis do not rely on remembering a succession of pointing +and clicking, but instead on a series of written commands, and that's a good +thing! So, if you want to redo your analysis because you collected more data, +you don't have to remember which button you clicked in which order to obtain +your results; you just have to run your script again. + +Working with scripts makes the steps you used in your analysis clear, and the +code you write can be inspected by someone else who can give you feedback and +spot mistakes. + +Working with scripts forces you to have a deeper understanding of what you are +doing, and facilitates your learning and comprehension of the methods you use. + +### R code is great for reproducibility + +Reproducibility is when someone else (including your future self) can obtain the +same results from the same dataset when using the same analysis. + +R integrates with other tools to generate manuscripts from your code. If you +collect more data, or fix a mistake in your dataset, the figures and the +statistical tests in your manuscript are updated automatically. + +An increasing number of journals and funding agencies expect analyses to be +reproducible, so knowing R will give you an edge with these requirements. + +### R is interdisciplinary and extensible + +With 10,000+ packages that can be installed to extend its capabilities, R +provides a framework that allows you to combine statistical approaches from many +scientific disciplines to best suit the analytical framework you need to analyze +your data. For instance, R has packages for image analysis, GIS, time series, +population genetics, and a lot more. + +### R works on data of all shapes and sizes + +The skills you learn with R scale easily with the size of your dataset. Whether +your dataset has hundreds or millions of lines, it won't make much difference to +you. + +R is designed for data analysis. It comes with special data structures and data +types that make handling of missing data and statistical factors convenient. + +R can connect to spreadsheets, databases, and many other data formats, on your +computer or on the web. + +### R produces high-quality graphics + +The plotting functionalities in R are endless, and allow you to adjust any +aspect of your graph to convey most effectively the message from your data. + +### R has a large and welcoming community + +Thousands of people use R daily. Many of them are willing to help you through +mailing lists and websites such as [Stack Overflow](https://stackoverflow.com/), +or on the [RStudio community](https://community.rstudio.com/). Questions which +are backed up with [short, reproducible code +snippets](https://www.tidyverse.org/help/) are more likely to attract +knowledgeable responses. + +### Not only is R free, but it is also open-source and cross-platform + +Anyone can inspect the source code to see how R works. Because of this +transparency, there is less chance for mistakes, and if you (or someone else) +find some, you can report and fix bugs. + +Because R is open source and is supported by a large community of developers and +users, there is a very large selection of third-party add-on packages which are +freely available to extend R's native capabilities. + +
+ +
+ +
+ +RStudio extends what R can do, and makes it easier to write R code and interact with R. + +
+ +
+ +automatic car gear shift representing the ease of RStudio + +
+ +
+ +
+ +RStudio extends what R can do, and makes it easier to write R code and interact +with R. Left photo credit; Right photo credit. + +
+ +
+ +## A tour of RStudio + +## Knowing your way around RStudio + +Let's start by learning about [RStudio](https://www.rstudio.com/), which is an +Integrated Development Environment (IDE) for working with R. + +The RStudio IDE open-source product is free under the +[Affero General Public License (AGPL) v3](https://www.gnu.org/licenses/agpl-3.0.en.html). +The RStudio IDE is also available with a commercial license and priority email +support from RStudio, Inc. + +We will use the RStudio IDE to write code, navigate the files on our computer, +inspect the variables we create, and visualize the plots we generate. RStudio +can also be used for other things (e.g., version control, developing packages, +writing Shiny apps) that we will not cover during the workshop. + +One of the advantages of using RStudio is that all the information +you need to write code is available in a single window. Additionally, RStudio +provides many shortcuts, autocompletion, and highlighting for the major file +types you use while developing in R. RStudio makes typing easier and less +error-prone. + +## Getting set up + +It is good practice to keep a set of related data, analyses, and text +self-contained in a single folder called the **working directory**. All of the +scripts within this folder can then use *relative paths* to files. Relative +paths indicate where inside the project a file is located (as opposed to +absolute paths, which point to where a file is on a specific computer). Working +this way makes it a lot easier to move your project around on your computer and +share it with others without having to directly modify file paths in the +individual scripts. + +RStudio provides a helpful set of tools to do this through its "Projects" +interface, which not only creates a working directory for you but also remembers +its location (allowing you to quickly navigate to it). The interface also +(optionally) preserves custom settings and open files to make it easier to +resume work after a break. + +### Create a new project + +- Under the `File` menu, click on `New project`, choose `New directory`, then + `New project` +- Enter a name for this new folder (or "directory") and choose a convenient + location for it. This will be your **working directory** for the rest of the + day (e.g., `~/data-carpentry`) +- Click on `Create project` +- Create a new file where we will type our scripts. Go to File > New File > R + script. Click the save icon on your toolbar and save your script as + "`script.R`". + +The simplest way to open an RStudio project once it has been created is to +navigate through your files to where the project was saved and double +click on the `.Rproj` (blue cube) file. This will open RStudio and start your R +session in the **same** directory as the `.Rproj` file. All your data, plots and +scripts will now be relative to the project directory. RStudio projects have the +added benefit of allowing you to open multiple projects at the same time each +open to its own project directory. This allows you to keep multiple projects +open without them interfering with each other. + +### The RStudio Interface + +Let's take a quick tour of RStudio. + +![](fig/R_00_Rstudio_01.png){alt='Screenshot of the RStudio\_startup screen'} + +RStudio is divided into four "panes". The placement of these +panes and their content can be customized (see menu, Tools -> Global Options -> +Pane Layout). + +The Default Layout is: + +- Top Left - **Source**: your scripts and documents +- Bottom Left - **Console**: what R would look and be like without RStudio +- Top Right - **Environment/History**: look here to see what you have done +- Bottom Right - **Files** and more: see the contents of the project/working + directory here, like your Script.R file + +### Organizing your working directory + +Using a consistent folder structure across your projects will help keep things +organized and make it easy to find/file things in the future. This +can be especially helpful when you have multiple projects. In general, you might +create directories (folders) for **scripts**, **data**, and **documents**. Here +are some examples of suggested directories: + +- **`data/`** Use this folder to store your raw data and intermediate datasets. + For the sake of transparency and + [provenance](https://en.wikipedia.org/wiki/Provenance), you + should *always* keep a copy of your raw data accessible and do as much of + your data cleanup and preprocessing programmatically (i.e., with scripts, + rather than manually) as possible. +- **`data_output/`** When you need to modify your raw data, + it might be useful to store the modified versions of the datasets in a + different folder. +- **`documents/`** Used for outlines, drafts, and other + text. +- **`fig_output/`** This folder can store the graphics that are generated + by your scripts. +- **`scripts/`** A place to keep your R scripts for + different analyses or plotting. + +You may want additional directories or subdirectories depending on your project +needs, but these should form the backbone of your working directory. + +![](fig/rstudio_project_files.jpeg){alt='Example of a working directory structure'} + +### The working directory + +The working directory is an important concept to understand. It is the place +where R will look for and save files. When you write code for your project, your +scripts should refer to files in relation to the root of your working directory +and only to files within this structure. + +Using RStudio projects makes this easy and ensures that your working directory +is set up properly. If you need to check it, you can use `getwd()`. If for some +reason your working directory is not the same as the location of your RStudio +project, it is likely that you opened an R script or RMarkdown file **not** your +`.Rproj` file. You should close out of RStudio and open the `.Rproj` file by +double clicking on the blue cube! If you ever need to modify your working +directory in a script, `setwd('my/path')` changes the working directory. This +should be used with caution since it makes analyses hard to share across devices +and with other users. + +### Downloading the data and getting set up + +For this lesson we will use the following folders in our working directory: +**`data/`**, **`data_output/`** and **`fig_output/`**. Let's write them all in +lowercase to be consistent. We can create them using the RStudio interface by +clicking on the "New Folder" button in the file pane (bottom right), or directly +from R by typing at console: + + +```r +dir.create("data") +dir.create("data_output") +dir.create("fig_output") +``` + +Go to the Figshare page for this curriculum and download the dataset called +"`SAFI_clean.csv`". The direct download link is: +[https://ndownloader.figshare.com/files/11492171](https://ndownloader.figshare.com/files/11492171). Place this downloaded file in +the `data/` you just created. You can do this directly from R by copying and +pasting this in your terminal (your instructor can place this chunk of code in +the Etherpad): + + +```r +download.file("https://ndownloader.figshare.com/files/11492171", + "data/SAFI_clean.csv", mode = "wb") +``` + +## Interacting with R + +The basis of programming is that we write down instructions for the computer to +follow, and then we tell the computer to follow those instructions. We write, or +*code*, instructions in R because it is a common language that both the computer +and we can understand. We call the instructions *commands* and we tell the +computer to follow the instructions by *executing* (also called *running*) those +commands. + +There are two main ways of interacting with R: by using the console or by using +script files (plain text files that contain your code). The console pane (in +RStudio, the bottom left panel) is the place where commands written in the R +language can be typed and executed immediately by the computer. It is also where +the results will be shown for commands that have been executed. You can type +commands directly into the console and press Enter to execute those +commands, but they will be forgotten when you close the session. + +Because we want our code and workflow to be reproducible, it is better to type +the commands we want in the script editor and save the script. This way, there +is a complete record of what we did, and anyone (including our future selves!) +can easily replicate the results on their computer. + +RStudio allows you to execute commands directly from the script editor by using +the Ctrl + Enter shortcut (on Mac, Cmd + +Return will work). The command on the current line in the +script (indicated by the cursor) or all of the commands in +selected text will be sent to the console and executed when you press +Ctrl + Enter. If there is information in the console +you do not need anymore, you can clear it with Ctrl + L. +You can find other keyboard shortcuts in this +[RStudio cheatsheet about the RStudio IDE](https://raw.githubusercontent.com/rstudio/cheatsheets/main/rstudio-ide.pdf). + +At some point in your analysis, you may want to check the content of a variable +or the structure of an object without necessarily keeping a record of it in +your script. You can type these commands and execute them directly in the +console. RStudio provides the Ctrl + 1 and +Ctrl + 2 shortcuts allow you to jump between the +script and the console panes. + +If R is ready to accept commands, the R console shows a `>` prompt. If R +receives a command (by typing, copy-pasting, or sent from the script editor using +Ctrl + Enter), R will try to execute it and, when +ready, will show the results and come back with a new `>` prompt to wait for new +commands. + +If R is still waiting for you to enter more text, +the console will show a `+` prompt. It means that you haven't finished entering +a complete command. This is likely because you have not 'closed' a parenthesis or +quotation, i.e. you don't have the same number of left-parentheses as +right-parentheses or the same number of opening and closing quotation marks. +When this happens, and you thought you finished typing your command, click +inside the console window and press Esc; this will cancel the +incomplete command and return you to the `>` prompt. You can then proofread +the command(s) you entered and correct the error. + +## Installing additional packages using the packages tab + +In addition to the core R installation, there are in excess of +10,000 additional packages which can be used to extend the +functionality of R. Many of these have been written by R users and +have been made available in central repositories, like the one +hosted at CRAN, for anyone to download and install into their own R +environment. You should have already installed the packages 'ggplot2' +and 'dplyr. If you have not, please do so now using these instructions. + +You can see if you have a package installed by looking in the `packages` tab +(on the lower-right by default). You can also type the command +`installed.packages()` into the console and examine the output. + +![](fig/packages_pane.png){alt='Screenshot of Packages pane'} + +Additional packages can be installed from the ‘packages' tab. +On the packages tab, click the ‘Install' icon and start typing the +name of the package you want in the text box. As you type, packages +matching your starting characters will be displayed in a drop-down +list so that you can select them. + +![](fig/R_00_Rstudio_03.png){alt='Screenshot of Install Packages Window'} + +At the bottom of the Install Packages window is a check box to +‘Install' dependencies. This is ticked by default, which is usually +what you want. Packages can (and do) make use of functionality +built into other packages, so for the functionality contained in +the package you are installing to work properly, there may be other +packages which have to be installed with them. The ‘Install +dependencies' option makes sure that this happens. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Use both the Console and the Packages tab to confirm that you have the tidyverse +installed. + +::::::::::::::: solution + +## Solution + +Scroll through packages tab down to ‘tidyverse'. You can also type a few +characters into the searchbox. +The ‘tidyverse' package is really a package of packages, including +'ggplot2' and 'dplyr', both of which require other packages to run correctly. +All of these packages will be installed automatically. Depending on what +packages have previously been installed in your R environment, the install of +‘tidyverse' could be very quick or could take several minutes. As the install +proceeds, messages relating to its progress will be written to the console. +You will be able to see all of the packages which are actually being +installed. + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +Because the install process accesses the CRAN repository, you +will need an Internet connection to install packages. + +It is also possible to install packages from other repositories, as +well as Github or the local file system, but we won't be looking at these options in this lesson. + +## Installing additional packages using R code + +If you were watching the console window when you started the +install of ‘tidyverse', you may have noticed that the line + + +```r +install.packages("tidyverse") +``` + +was written to the console before the start of the installation messages. + +You could also have installed the **`tidyverse`** packages by running this command directly at the R terminal. + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Use RStudio to write and run R programs. +- Use `install.packages()` to install packages (libraries). + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/01-intro-to-r.md b/01-intro-to-r.md new file mode 100644 index 000000000..4d0aab695 --- /dev/null +++ b/01-intro-to-r.md @@ -0,0 +1,905 @@ +--- +title: Introduction to R +teaching: 50 +exercises: 30 +source: Rmd +--- + + + +::::::::::::::::::::::::::::::::::::::: objectives + +- Define the following terms as they relate to R: object, assign, call, function, arguments, options. +- Assign values to objects in R. +- Learn how to name objects. +- Use comments to inform script. +- Solve simple arithmetic operations in R. +- Call functions and use arguments to change their default options. +- Inspect the content of vectors and manipulate their content. +- Subset values from vectors. +- Analyze vectors with missing data. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What data types are available in R? +- What is an object? +- How can values be initially assigned to variables of different data types? +- What arithmetic and logical operators can be used? +- How can subsets be extracted from vectors? +- How does R treat missing values? +- How can we deal with missing values in R? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Creating objects in R + +You can get output from R simply by typing math in the console: + + +```r +3 + 5 +``` + +```{.output} +[1] 8 +``` + +```r +12 / 7 +``` + +```{.output} +[1] 1.714286 +``` + +However, to do useful and interesting things, we need to assign *values* to +*objects*. To create an object, we need to give it a name followed by the +assignment operator `<-`, and the value we want to give it: + + +```r +area_hectares <- 1.0 +``` + +`<-` is the assignment operator. It assigns values on the right to objects on +the left. So, after executing `x <- 3`, the value of `x` is `3`. The arrow can +be read as 3 **goes into** `x`. For historical reasons, you can also use `=` +for assignments, but not in every context. Because of the +[slight differences](https://blog.revolutionanalytics.com/2008/12/use-equals-or-arrow-for-assignment.html) +in syntax, it is good practice to always use `<-` for assignments. More +generally we prefer the `<-` syntax over `=` because it makes it clear what +direction the assignment is operating (left assignment), and it increases the +read-ability of the code. + +In RStudio, typing Alt + \- (push Alt at the +same time as the \- key) will write `<- ` in a single keystroke in a +PC, while typing Option + \- (push Option at the +same time as the \- key) does the same in a Mac. + +Objects can be given any name such as `x`, `current_temperature`, or +`subject_id`. You want your object names to be explicit and not too long. They +cannot start with a number (`2x` is not valid, but `x2` is). R is case sensitive +(e.g., `age` is different from `Age`). There are some names that +cannot be used because they are the names of fundamental objects in R (e.g., +`if`, `else`, `for`, see +[here](https://stat.ethz.ch/R-manual/R-devel/library/base/html/Reserved.html) +for a complete list). In general, even if it's allowed, it's best to not use +them (e.g., `c`, `T`, `mean`, `data`, `df`, `weights`). If in +doubt, check the help to see if the name is already in use. It's also best to +avoid dots (`.`) within an object name as in `my.dataset`. There are many +objects in R with dots in their names for historical reasons, but because dots +have a special meaning in R (for methods) and other programming languages, it's +best to avoid them. The recommended writing style is called snake\_case, which +implies using only lowercaseletters and numbers and separating each word with +underscores (e.g., animals\_weight, average\_income). It is also recommended to use nouns for object names, and +verbs for function names. It's important to be consistent in the styling of your +code (where you put spaces, how you name objects, etc.). Using a consistent +coding style makes your code clearer to read for your future self and your +collaborators. In R, three popular style guides are +[Google's](https://google.github.io/styleguide/Rguide.xml), [Jean +Fan's](https://jef.works/R-style-guide/) and the +[tidyverse's](https://style.tidyverse.org/). The tidyverse's is very +comprehensive and may seem overwhelming at first. You can install the +[**`lintr`**](https://github.com/jimhester/lintr) package to automatically check +for issues in the styling of your code. + +::::::::::::::::::::::::::::::::::::::::: callout + +## Objects vs. variables + +What are known as `objects` in `R` are known as `variables` in many other +programming languages. Depending on the context, `object` and `variable` can +have drastically different meanings. However, in this lesson, the two words +are used synonymously. For more information see: +[https://cran.r-project.org/doc/manuals/r-release/R-lang.html#Objects](https://cran.r-project.org/doc/manuals/r-release/R-lang.html#Objects) + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +When assigning a value to an object, R does not print anything. You +can force R to print the value by using parentheses or by typing +the object name: + + +```r +area_hectares <- 1.0 # doesn't print anything +(area_hectares <- 1.0) # putting parenthesis around the call prints the value of `area_hectares` +``` + +```{.output} +[1] 1 +``` + +```r +area_hectares # and so does typing the name of the object +``` + +```{.output} +[1] 1 +``` + +Now that R has `area_hectares` in memory, we can do arithmetic with it. For +instance, we may want to convert this area into acres (area in acres is 2.47 times the area in hectares): + + +```r +2.47 * area_hectares +``` + +```{.output} +[1] 2.47 +``` + +We can also change an object's value by assigning it a new one: + + +```r +area_hectares <- 2.5 +2.47 * area_hectares +``` + +```{.output} +[1] 6.175 +``` + +This means that assigning a value to one object does not change the values of +other objects. For example, let's store the plot's area in acres +in a new object, `area_acres`: + + +```r +area_acres <- 2.47 * area_hectares +``` + +and then change `area_hectares` to 50. + + +```r +area_hectares <- 50 +``` + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +What do you think is the current content of the object `area_acres`? 123.5 or +6\.175? + +::::::::::::::: solution + +## Solution + +The value of `area_acres` is still 6.175 because you have not +re-run the line `area_acres <- 2.47 * area_hectares` since +changing the value of `area_hectares`. + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Comments + +All programming languages allow the programmer to include comments in their code. Including comments to your code has many advantages: it helps you explain your reasoning and it forces you to be tidy. A commented code is also a great tool not only to your collaborators, but to your future self. Comments are the key to a reproducible analysis. + +To do this in R we use the `#` character. +Anything to the right of the `#` sign and up to the end of the line is treated as a comment and is ignored by R. You can start lines with comments +or include them after any code on the line. + + +```r +area_hectares <- 1.0 # land area in hectares +area_acres <- area_hectares * 2.47 # convert to acres +area_acres # print land area in acres. +``` + +```{.output} +[1] 2.47 +``` + +RStudio makes it easy to comment or uncomment a paragraph: after selecting the +lines you want to comment, press at the same time on your keyboard +Ctrl + Shift + C. If you only want to comment +out one line, you can put the cursor at any location of that line (i.e. no need +to select the whole line), then press Ctrl + Shift + +C. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Create two variables `r_length` and `r_width` and assign them values. It should be noted that, +because `length` is a built-in R function, R Studio might add "()" after you type `length` and +if you leave the parentheses you will get unexpected results. +This is why you might see other programmers abbreviate common words. +Create a third variable `r_area` and give it a value based on the current values of `r_length` +and `r_width`. +Show that changing the values of either `r_length` and `r_width` does not affect the value of +`r_area`. + +::::::::::::::: solution + +## Solution + + +```r +r_length <- 2.5 +r_width <- 3.2 +r_area <- r_length * r_width +r_area +``` + +```{.output} +[1] 8 +``` + +```r +# change the values of r_length and r_width +r_length <- 7.0 +r_width <- 6.5 +# the value of r_area isn't changed +r_area +``` + +```{.output} +[1] 8 +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +### Functions and their arguments + +Functions are "canned scripts" that automate more complicated sets of commands +including operations assignments, etc. Many functions are predefined, or can be +made available by importing R *packages* (more on that later). A function +usually gets one or more inputs called *arguments*. Functions often (but not +always) return a *value*. A typical example would be the function `sqrt()`. The +input (the argument) must be a number, and the return value (in fact, the +output) is the square root of that number. Executing a function ('running it') +is called *calling* the function. An example of a function call is: + + +```r +b <- sqrt(a) +``` + +Here, the value of `a` is given to the `sqrt()` function, the `sqrt()` function +calculates the square root, and returns the value which is then assigned to +the object `b`. This function is very simple, because it takes just one argument. + +The return 'value' of a function need not be numerical (like that of `sqrt()`), +and it also does not need to be a single item: it can be a set of things, or +even a dataset. We'll see that when we read data files into R. + +Arguments can be anything, not only numbers or filenames, but also other +objects. Exactly what each argument means differs per function, and must be +looked up in the documentation (see below). Some functions take arguments which +may either be specified by the user, or, if left out, take on a *default* value: +these are called *options*. Options are typically used to alter the way the +function operates, such as whether it ignores 'bad values', or what symbol to +use in a plot. However, if you want something specific, you can specify a value +of your choice which will be used instead of the default. + +Let's try a function that can take multiple arguments: `round()`. + + +```r +round(3.14159) +``` + +```{.output} +[1] 3 +``` + +Here, we've called `round()` with just one argument, `3.14159`, and it has +returned the value `3`. That's because the default is to round to the nearest +whole number. If we want more digits we can see how to do that by getting +information about the `round` function. We can use `args(round)` or look at the +help for this function using `?round`. + + +```r +args(round) +``` + +```{.output} +function (x, digits = 0) +NULL +``` + + +```r +?round +``` + +We see that if we want a different number of digits, we can +type `digits=2` or however many we want. + + +```r +round(3.14159, digits = 2) +``` + +```{.output} +[1] 3.14 +``` + +If you provide the arguments in the exact same order as they are defined you +don't have to name them: + + +```r +round(3.14159, 2) +``` + +```{.output} +[1] 3.14 +``` + +And if you do name the arguments, you can switch their order: + + +```r +round(digits = 2, x = 3.14159) +``` + +```{.output} +[1] 3.14 +``` + +It's good practice to put the non-optional arguments (like the number you're +rounding) first in your function call, and to specify the names of all optional +arguments. If you don't, someone reading your code might have to look up the +definition of a function with unfamiliar arguments to understand what you're +doing. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Type in `?round` at the console and then look at the output in the Help pane. +What other functions exist that are similar to `round`? +How do you use the `digits` parameter in the round function? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Vectors and data types + + + +A vector is the most common and basic data type in R, and is pretty much +the workhorse of R. A vector is composed by a series of values, which can be +either numbers or characters. We can assign a series of values to a vector using +the `c()` function. For example we can create a vector of the number of household +members for the households we've interviewed and assign +it to a new object `hh_members`: + + +```r +hh_members <- c(3, 7, 10, 6) +hh_members +``` + +```{.output} +[1] 3 7 10 6 +``` + +A vector can also contain characters. For example, we can have +a vector of the building material used to construct our +interview respondents' walls (`respondent_wall_type`): + + +```r +respondent_wall_type <- c("muddaub", "burntbricks", "sunbricks") +respondent_wall_type +``` + +```{.output} +[1] "muddaub" "burntbricks" "sunbricks" +``` + +The quotes around "muddaub", etc. are essential here. Without the quotes R +will assume there are objects called `muddaub`, `burntbricks` and `sunbricks`. As these objects +don't exist in R's memory, there will be an error message. + +There are many functions that allow you to inspect the content of a +vector. `length()` tells you how many elements are in a particular vector: + + +```r +length(hh_members) +``` + +```{.output} +[1] 4 +``` + +```r +length(respondent_wall_type) +``` + +```{.output} +[1] 3 +``` + +An important feature of a vector, is that all of the elements are the same type of data. +The function `typeof()` indicates the type of an object: + + +```r +typeof(hh_members) +``` + +```{.output} +[1] "double" +``` + +```r +typeof(respondent_wall_type) +``` + +```{.output} +[1] "character" +``` + +The function `str()` provides an overview of the structure of an object and its +elements. It is a useful function when working with large and complex +objects: + + +```r +str(hh_members) +``` + +```{.output} + num [1:4] 3 7 10 6 +``` + +```r +str(respondent_wall_type) +``` + +```{.output} + chr [1:3] "muddaub" "burntbricks" "sunbricks" +``` + +You can use the `c()` function to add other elements to your vector: + + +```r +possessions <- c("bicycle", "radio", "television") +possessions <- c(possessions, "mobile_phone") # add to the end of the vector +possessions <- c("car", possessions) # add to the beginning of the vector +possessions +``` + +```{.output} +[1] "car" "bicycle" "radio" "television" "mobile_phone" +``` + +In the first line, we take the original vector `possessions`, +add the value `"mobile_phone"` to the end of it, and save the result back into +`possessions`. Then we add the value `"car"` to the beginning, again saving the result +back into `possessions`. + +We can do this over and over again to grow a vector, or assemble a dataset. +As we program, this may be useful to add results that we are collecting or +calculating. + +An **atomic vector** is the simplest R **data type** and is a linear vector of a single type. Above, we saw +2 of the 6 main **atomic vector** types that R +uses: `"character"` and `"numeric"` (or `"double"`). These are the basic building blocks that +all R objects are built from. The other 4 **atomic vector** types are: + +- `"logical"` for `TRUE` and `FALSE` (the boolean data type) +- `"integer"` for integer numbers (e.g., `2L`, the `L` indicates to R that it's an integer) +- `"complex"` to represent complex numbers with real and imaginary parts (e.g., + `1 + 4i`) and that's all we're going to say about them +- `"raw"` for bitstreams that we won't discuss further + +You can check the type of your vector using the `typeof()` function and inputting your vector as the argument. + +Vectors are one of the many **data structures** that R uses. Other important +ones are lists (`list`), matrices (`matrix`), data frames (`data.frame`), +factors (`factor`) and arrays (`array`). + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +We've seen that atomic vectors can be of type character, numeric (or double), +integer, and logical. But what happens if we try to mix these types in a +single vector? + +::::::::::::::: solution + +## Solution + +R implicitly converts them to all be the same type. + +::::::::::::::::::::::::: + +What will happen in each of these examples? (hint: use `class()` +to check the data type of your objects): + + +```r +num_char <- c(1, 2, 3, "a") +num_logical <- c(1, 2, 3, TRUE) +char_logical <- c("a", "b", "c", TRUE) +tricky <- c(1, 2, 3, "4") +``` + +Why do you think it happens? + +::::::::::::::: solution + +## Solution + +Vectors can be of only one data type. R tries to +convert (coerce) the content of this vector to find a "common +denominator" that doesn't lose any information. + +::::::::::::::::::::::::: + +How many values in `combined_logical` are `"TRUE"` (as a character) in the +following example: + + +```r +num_logical <- c(1, 2, 3, TRUE) +char_logical <- c("a", "b", "c", TRUE) +combined_logical <- c(num_logical, char_logical) +``` + +::::::::::::::: solution + +## Solution + +Only one. There is no memory of past data types, and the coercion +happens the +first time the vector is evaluated. Therefore, the `TRUE` in +`num_logical` +gets converted into a `1` before it gets converted into `"1"` in +`combined_logical`. + +::::::::::::::::::::::::: + +You've probably noticed that objects of different types get +converted into a single, shared type within a vector. In R, we +call converting objects from one class into another class +*coercion*. These conversions happen according to a hierarchy, +whereby some types get preferentially coerced into other +types. Can you draw a diagram that represents the hierarchy of how +these data types are coerced? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Subsetting vectors + +Subsetting (sometimes referred to as extracting or indexing) involves accessing out one or more values based on their numeric placement or "index" within a vector. If we want to subset one or several values from a vector, we must provide one index or several indices in square brackets. For instance: + + +```r +respondent_wall_type <- c("muddaub", "burntbricks", "sunbricks") +respondent_wall_type[2] +``` + +```{.output} +[1] "burntbricks" +``` + +```r +respondent_wall_type[c(3, 2)] +``` + +```{.output} +[1] "sunbricks" "burntbricks" +``` + +We can also repeat the indices to create an object with more elements than the +original one: + + +```r +more_respondent_wall_type <- respondent_wall_type[c(1, 2, 3, 2, 1, 3)] +more_respondent_wall_type +``` + +```{.output} +[1] "muddaub" "burntbricks" "sunbricks" "burntbricks" "muddaub" +[6] "sunbricks" +``` + +R indices start at 1. Programming languages like Fortran, MATLAB, Julia, and R +start counting at 1, because that's what human beings typically do. Languages in +the C family (including C++, Java, Perl, and Python) count from 0 because that's +simpler for computers to do. + +### Conditional subsetting + +Another common way of subsetting is by using a logical vector. `TRUE` will +select the element with the same index, while `FALSE` will not: + + +```r +hh_members <- c(3, 7, 10, 6) +hh_members[c(TRUE, FALSE, TRUE, TRUE)] +``` + +```{.output} +[1] 3 10 6 +``` + +Typically, these logical vectors are not typed by hand, but are the output of +other functions or logical tests. For instance, if you wanted to select only the +values above 5: + + +```r +hh_members > 5 # will return logicals with TRUE for the indices that meet the condition +``` + +```{.output} +[1] FALSE TRUE TRUE TRUE +``` + +```r +## so we can use this to select only the values above 5 +hh_members[hh_members > 5] +``` + +```{.output} +[1] 7 10 6 +``` + +You can combine multiple tests using `&` (both conditions are true, AND) or `|` +(at least one of the conditions is true, OR): + + +```r +hh_members[hh_members < 4 | hh_members > 7] +``` + +```{.output} +[1] 3 10 +``` + +```r +hh_members[hh_members >= 4 & hh_members <= 7] +``` + +```{.output} +[1] 7 6 +``` + +Here, `<` stands for "less than", `>` for "greater than", `>=` for "greater than +or equal to", and `==` for "equal to". The double equal sign `==` is a test for +numerical equality between the left and right hand sides, and should not be +confused with the single `=` sign, which performs variable assignment (similar +to `<-`). + +A common task is to search for certain strings in a vector. One could use the +"or" operator `|` to test for equality to multiple values, but this can quickly +become tedious. + + +```r +possessions <- c("car", "bicycle", "radio", "television", "mobile_phone") +possessions[possessions == "car" | possessions == "bicycle"] # returns both car and bicycle +``` + +```{.output} +[1] "car" "bicycle" +``` + +The function `%in%` allows you to test if any of the elements of a search vector +(on the left hand side) are found in the target vector (on the right hand side): + + +```r +possessions %in% c("car", "bicycle") +``` + +```{.output} +[1] TRUE TRUE FALSE FALSE FALSE +``` + +Note that the output is the same length as the search vector on the left hand +side, because `%in%` checks whether each element of the search vector is found +somewhere in the target vector. Thus, you can use `%in%` to select the elements +in the search vector that appear in your target vector: + + +```r +possessions %in% c("car", "bicycle", "motorcycle", "truck", "boat", "bus") +``` + +```{.output} +[1] TRUE TRUE FALSE FALSE FALSE +``` + +```r +possessions[possessions %in% c("car", "bicycle", "motorcycle", "truck", "boat", "bus")] +``` + +```{.output} +[1] "car" "bicycle" +``` + +## Missing data + +As R was designed to analyze datasets, it includes the concept of missing data +(which is uncommon in other programming languages). Missing data are represented +in vectors as `NA`. + +When doing operations on numbers, most functions will return `NA` if the data +you are working with include missing values. This feature +makes it harder to overlook the cases where you are dealing with missing data. +You can add the argument `na.rm=TRUE` to calculate the result while ignoring +the missing values. + + +```r +rooms <- c(2, 1, 1, NA, 7) +mean(rooms) +``` + +```{.output} +[1] NA +``` + +```r +max(rooms) +``` + +```{.output} +[1] NA +``` + +```r +mean(rooms, na.rm = TRUE) +``` + +```{.output} +[1] 2.75 +``` + +```r +max(rooms, na.rm = TRUE) +``` + +```{.output} +[1] 7 +``` + +If your data include missing values, you may want to become familiar with the +functions `is.na()`, `na.omit()`, and `complete.cases()`. See below for +examples. + + +```r +## Extract those elements which are not missing values. +## The ! character is also called the NOT operator +rooms[!is.na(rooms)] +``` + +```{.output} +[1] 2 1 1 7 +``` + +```r +## Count the number of missing values. +## The output of is.na() is a logical vector (TRUE/FALSE equivalent to 1/0) so the sum() function here is effectively counting +sum(is.na(rooms)) +``` + +```{.output} +[1] 1 +``` + +```r +## Returns the object with incomplete cases removed. The returned object is an atomic vector of type `"numeric"` (or `"double"`). +na.omit(rooms) +``` + +```{.output} +[1] 2 1 1 7 +attr(,"na.action") +[1] 4 +attr(,"class") +[1] "omit" +``` + +```r +## Extract those elements which are complete cases. The returned object is an atomic vector of type `"numeric"` (or `"double"`). +rooms[complete.cases(rooms)] +``` + +```{.output} +[1] 2 1 1 7 +``` + +Recall that you can use the `typeof()` function to find the type of your atomic vector. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +1. Using this vector of rooms, create a new vector with the NAs removed. + +```r +rooms <- c(1, 2, 1, 1, NA, 3, 1, 3, 2, 1, 1, 8, 3, 1, NA, 1) +``` + +2. Use the function `median()` to calculate the median of the `rooms` vector. + +3. Use R to figure out how many households in the set use more than 2 rooms for sleeping. + +::::::::::::::: solution + +## Solution + + +```r +rooms <- c(1, 2, 1, 1, NA, 3, 1, 3, 2, 1, 1, 8, 3, 1, NA, 1) +rooms_no_na <- rooms[!is.na(rooms)] +# or +rooms_no_na <- na.omit(rooms) +# 2. +median(rooms, na.rm = TRUE) +``` + +```{.output} +[1] 1 +``` + +```r +# 3. +rooms_above_2 <- rooms_no_na[rooms_no_na > 2] +length(rooms_above_2) +``` + +```{.output} +[1] 4 +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +Now that we have learned how to write scripts, and the basics of R's data +structures, we are ready to start working with the SAFI dataset we have been +using in the other lessons, and learn about data frames. + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Access individual values by location using `[]`. +- Access arbitrary sets of data using `[c(...)]`. +- Use logical operations and logical vectors to access subsets of data. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/02-starting-with-data.md b/02-starting-with-data.md new file mode 100644 index 000000000..e8f055190 --- /dev/null +++ b/02-starting-with-data.md @@ -0,0 +1,1010 @@ +--- +title: Starting with Data +teaching: 50 +exercises: 30 +source: Rmd +--- + + + +::::::::::::::::::::::::::::::::::::::: objectives + +- Describe what a data frame is. +- Load external data from a .csv file into a data frame. +- Summarize the contents of a data frame. +- Subset values from data frames. +- Describe the difference between a factor and a string. +- Convert between strings and factors. +- Reorder and rename factors. +- Change how character strings are handled in a data frame. +- Examine and change date formats. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What is a data.frame? +- How can I read a complete csv file into R? +- How can I get basic summary information about my dataset? +- How can I change the way R treats strings in my dataset? +- Why would I want strings to be treated differently? +- How are dates represented in R and how can I change the format? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## What are data frames and tibbles? + +Data frames are the *de facto* data structure for tabular data in `R`, and what +we use for data processing, statistics, and plotting. + +A data frame is the representation of data in the format of a table where the +columns are vectors that all have the same length. Data frames are analogous to +the more familiar spreadsheet in programs such as Excel, with one key difference. +Because columns are vectors, +each column must contain a single type of data (e.g., characters, integers, +factors). For example, here is a figure depicting a data frame comprising a +numeric, a character, and a logical vector. + +![](fig/data-frame.svg){alt='A 3 by 3 data frame with columns showing numeric, character and logical values.'} + +Data frames can be created by hand, but most commonly they are generated by the +functions `read_csv()` or `read_table()`; in other words, when importing +spreadsheets from your hard drive (or the web). We will now demonstrate how to +import tabular data using `read_csv()`. + +## Presentation of the SAFI Data + +SAFI (Studying African Farmer-Led Irrigation) is a study looking at farming +and irrigation methods in Tanzania and Mozambique. The survey data +was collected through interviews conducted between November 2016 and +June 2017. For this lesson, we will be using a subset of the +available data. For information about the full teaching dataset used +in other lessons in this workshop, see the +[dataset description](https://www.datacarpentry.org/socialsci-workshop/data/). + +We will be using a subset of the cleaned version of the dataset that +was produced through cleaning in OpenRefine (`data/SAFI_clean.csv`). In this dataset, the missing data is encoded as "NULL", each row holds +information for a single interview respondent, and the columns +represent: + +| column\_name | description | +| -------------------- | -------------------------------------------------------------------------------------------------------------------------------- | +| key\_id | Added to provide a unique Id for each observation. (The InstanceID field does this as well but it is not as convenient to use) | +| village | Village name | +| interview\_date | Date of interview | +| no\_membrs | How many members in the household? | +| years\_liv | How many years have you been living in this village or neighboring village? | +| respondent\_wall\_type | What type of walls does their house have (from list) | +| rooms | How many rooms in the main house are used for sleeping? | +| memb\_assoc | Are you a member of an irrigation association? | +| affect\_conflicts | Have you been affected by conflicts with other irrigators in the area? | +| liv\_count | Number of livestock owned. | +| items\_owned | Which of the following items are owned by the household? (list) | +| no\_meals | How many meals do people in your household normally eat in a day? | +| months\_lack\_food | Indicate which months, In the last 12 months have you faced a situation when you did not have enough food to feed the household? | +| instanceID | Unique identifier for the form data submission | + +## Importing data + +You are going to load the data in R's memory using the function `read_csv()` +from the **`readr`** package, which is part of the **`tidyverse`**; learn +more about the **`tidyverse`** collection of packages +[here](https://www.tidyverse.org/). +**`readr`** gets installed as part as the **`tidyverse`** installation. +When you load the **`tidyverse`** (`library(tidyverse)`), the core packages +(the packages used in most data analyses) get loaded, including **`readr`**. + +Before proceeding, however, this is a good opportunity to talk about conflicts. +Certain packages we load can end up introducing function names that are already +in use by pre-loaded R packages. For instance, when we load the tidyverse +package below, we will introduce two conflicting functions: `filter()` and `lag()`. +This happens because `filter` and `lag` are already functions used by the stats +package (already pre-loaded in R). What will happen now is that if we, for +example, call the `filter()` function, R will use the `dplyr::filter()` version +and not the `stats::filter()` one. This happens because, if conflicted, by +default R uses the function from the most recently loaded package. Conflicted +functions may cause you some trouble in the future, so it is important that we +are aware of them so that we can properly handle them, if we want. + +To do so, we just need the following functions from the conflicted package: + +- `conflicted::conflict_scout()`: Shows us any conflicted functions. +- `conflict_prefer("function", "package_prefered")`: Allows us to choose the +default function we want from now on. + +It is also important to know that we can, at any time, just call the function +directly from the package we want, such as `stats::filter()`. + +Even with the use of an RStudio project, it can be difficult to learn how to +specify paths to file locations. Enter the **here** package! The here package +creates paths relative to the top-level directory (your RStudio project). These +relative paths work *regardless* of where the associated source file lives +inside your project, like analysis projects with data and reports in different +subdirectories. This is an important contrast to using `setwd()`, which +depends on the way you order your files on your computer. + +
+Monsters at a fork in the road, with signs saying here, and not here. One direction, not here, leads to a scary dark forest with spiders and absolute filepaths, while the other leads to a sunny, green meadow, and a city below a rainbow and a world free of absolute filepaths. Art by Allison Horst +
+Image credit: Allison Horst +
+
+ +Before we can use the `read_csv()` and `here()` functions, we need to load the +tidyverse and here packages. + +Also, if you recall, the missing data is encoded as "NULL" in the dataset. +We'll tell it to the function, so R will automatically convert all the "NULL" +entries in the dataset into `NA`. + + +```r +library(tidyverse) +library(here) + +interviews <- read_csv( + here("data", "SAFI_clean.csv"), + na = "NULL") +``` + +In the above code, we notice the `here()` function takes folder and file names +as inputs (e.g., `"data"`, `"SAFI_clean.csv"`), each enclosed in quotations +(`""`) and separated by a comma. The `here()` will accept as many names as are +necessary to navigate to a particular file +(e.g., `here("analysis", "data", "surveys", "clean", "SAFI_clean.csv)`). + +The `here()` function can accept the folder and file names in an alternate format, +using a slash ("/") rather than commas to separate the names. The two methods are +equivalent, so that `here("data", "SAFI_clean.csv")` and +`here("data/SAFI_clean.csv")` produce the same result. (The slash is used on all +operating systems; backslashes are not used.) + +If you were to type in the code above, it is likely that the `read.csv()` +function would appear in the automatically populated list of functions. This +function is different from the `read_csv()` function, as it is included in the +"base" packages that come pre-installed with R. Overall, `read.csv()` behaves +similar to `read_csv()`, with a few notable differences. First, `read.csv()` +coerces column names with spaces and/or special characters to different names +(e.g. `interview date` becomes `interview.date`). Second, `read.csv()` +stores data as a `data.frame`, where `read_csv()` stores data as a `tibble`. +We prefer tibbles because they have nice printing properties among other +desirable qualities. Read more about tibbles +[here](https://tibble.tidyverse.org/). + +The second statement in the code above creates a data frame but doesn't output +any data because, as you might recall, assignments (`<-`) don't display +anything. (Note, however, that `read_csv` may show informational +text about the data frame that is created.) If we want to check that our data +has been loaded, we can see the contents of the data frame by typing its name: +`interviews` in the console. + + +```r +interviews +## Try also +## view(interviews) +## head(interviews) +``` + +```{.output} +# A tibble: 131 × 14 + key_ID village interview_date no_membrs years_liv respondent_wall_type + + 1 1 God 2016-11-17 00:00:00 3 4 muddaub + 2 1 God 2016-11-17 00:00:00 7 9 muddaub + 3 3 God 2016-11-17 00:00:00 10 15 burntbricks + 4 4 God 2016-11-17 00:00:00 7 6 burntbricks + 5 5 God 2016-11-17 00:00:00 7 40 burntbricks + 6 6 God 2016-11-17 00:00:00 3 3 muddaub + 7 7 God 2016-11-17 00:00:00 6 38 muddaub + 8 8 Chirodzo 2016-11-16 00:00:00 12 70 burntbricks + 9 9 Chirodzo 2016-11-16 00:00:00 8 6 burntbricks +10 10 Chirodzo 2016-12-16 00:00:00 12 23 burntbricks +# ℹ 121 more rows +# ℹ 8 more variables: rooms , memb_assoc , affect_conflicts , +# liv_count , items_owned , no_meals , months_lack_food , +# instanceID +``` + +::::::::::::::::::::::::::::::::::::::::: callout + +## Note + +`read_csv()` assumes that fields are delimited by commas. However, in several +countries, the comma is used as a decimal separator and the semicolon (;) is +used as a field delimiter. If you want to read in this type of files in R, +you can use the `read_csv2` function. It behaves exactly like `read_csv` but +uses different parameters for the decimal and the field separators. If you are +working with another format, they can be both specified by the user. Check out +the help for `read_csv()` by typing `?read_csv` to learn more. There is also +the `read_tsv()` for tab-separated data files, and `read_delim()` allows you +to specify more details about the structure of your file. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +Note that `read_csv()` actually loads the data as a tibble. +A tibble is an extension of `R` data frames used by the **`tidyverse`**. When +the data is read using `read_csv()`, it is stored in an object of class +`tbl_df`, `tbl`, and `data.frame`. You can see the class of an object with + + +```r +class(interviews) +``` + +```{.output} +[1] "spec_tbl_df" "tbl_df" "tbl" "data.frame" +``` + +As a `tibble`, the type of data included in each column is listed in an +abbreviated fashion below the column names. For instance, here `key_ID` is a +column of floating point numbers (abbreviated `` for the word 'double'), +`village` is a column of characters (``) and the `interview_date` is a +column in the "date and time" format (``). + +## Inspecting data frames + +When calling a `tbl_df` object (like `interviews` here), there is already a lot +of information about our data frame being displayed such as the number of rows, +the number of columns, the names of the columns, and as we just saw the class of +data stored in each column. However, there are functions to extract this +information from data frames. Here is a non-exhaustive list of some of these +functions. Let's try them out! + +Size: + +- `dim(interviews)` - returns a vector with the number of rows as the first + element, and the number of columns as the second element (the **dim**ensions of + the object) +- `nrow(interviews)` - returns the number of rows +- `ncol(interviews)` - returns the number of columns + +Content: + +- `head(interviews)` - shows the first 6 rows +- `tail(interviews)` - shows the last 6 rows + +Names: + +- `names(interviews)` - returns the column names (synonym of `colnames()` for + `data.frame` objects) + +Summary: + +- `str(interviews)` - structure of the object and information about the class, + length and content of each column +- `summary(interviews)` - summary statistics for each column +- `glimpse(interviews)` - returns the number of columns and rows of the tibble, + the names and class of each column, and previews as many values will fit on the + screen. Unlike the other inspecting functions listed above, `glimpse()` is not a + "base R" function so you need to have the `dplyr` or `tibble` packages loaded to + be able to execute it. + +Note: most of these functions are "generic." They can be used on other types of +objects besides data frames or tibbles. + +## Subsetting data frames + +Our `interviews` data frame has rows and columns (it has 2 dimensions). +In practice, we may not need the entire data frame; for instance, we may only +be interested in a subset of the observations (the rows) or a particular set +of variables (the columns). If we want to +access some specific data from it, we need to specify the "coordinates" (i.e., indices) we +want from it. Row numbers come first, followed by column numbers. + +::::::::::::::::::::::::::::::::::::::::: callout + +## Tip + +Subsetting a `tibble` with `[` always results in a `tibble`. +However, note this is not true in general for data frames, so be careful! +Different ways of specifying these coordinates can lead to results with +different classes. This is covered in the Software Carpentry lesson +[R for Reproducible Scientific Analysis](https://swcarpentry.github.io/r-novice-gapminder/). + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + +```r +## first element in the first column of the tibble +interviews[1, 1] +``` + +```{.output} +# A tibble: 1 × 1 + key_ID + +1 1 +``` + +```r +## first element in the 6th column of the tibble +interviews[1, 6] +``` + +```{.output} +# A tibble: 1 × 1 + respondent_wall_type + +1 muddaub +``` + +```r +## first column of the tibble (as a vector) +interviews[[1]] +``` + +```{.output} + [1] 1 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 + [19] 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 + [37] 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 21 54 + [55] 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 127 + [73] 133 152 153 155 178 177 180 181 182 186 187 195 196 197 198 201 202 72 + [91] 73 76 83 85 89 101 103 102 78 80 104 105 106 109 110 113 118 125 +[109] 119 115 108 116 117 144 143 150 159 160 165 166 167 174 175 189 191 192 +[127] 126 193 194 199 200 +``` + +```r +## first column of the tibble +interviews[1] +``` + +```{.output} +# A tibble: 131 × 1 + key_ID + + 1 1 + 2 1 + 3 3 + 4 4 + 5 5 + 6 6 + 7 7 + 8 8 + 9 9 +10 10 +# ℹ 121 more rows +``` + +```r +## first three elements in the 7th column of the tibble +interviews[1:3, 7] +``` + +```{.output} +# A tibble: 3 × 1 + rooms + +1 1 +2 1 +3 1 +``` + +```r +## the 3rd row of the tibble +interviews[3, ] +``` + +```{.output} +# A tibble: 1 × 14 + key_ID village interview_date no_membrs years_liv respondent_wall_type + +1 3 God 2016-11-17 00:00:00 10 15 burntbricks +# ℹ 8 more variables: rooms , memb_assoc , affect_conflicts , +# liv_count , items_owned , no_meals , months_lack_food , +# instanceID +``` + +```r +## equivalent to head_interviews <- head(interviews) +head_interviews <- interviews[1:6, ] +``` + +`:` is a special function that creates numeric vectors of integers in increasing +or decreasing order, test `1:10` and `10:1` for instance. + +You can also exclude certain indices of a data frame using the "`-`" sign: + + +```r +interviews[, -1] # The whole tibble, except the first column +``` + +```{.output} +# A tibble: 131 × 13 + village interview_date no_membrs years_liv respondent_wall_type rooms + + 1 God 2016-11-17 00:00:00 3 4 muddaub 1 + 2 God 2016-11-17 00:00:00 7 9 muddaub 1 + 3 God 2016-11-17 00:00:00 10 15 burntbricks 1 + 4 God 2016-11-17 00:00:00 7 6 burntbricks 1 + 5 God 2016-11-17 00:00:00 7 40 burntbricks 1 + 6 God 2016-11-17 00:00:00 3 3 muddaub 1 + 7 God 2016-11-17 00:00:00 6 38 muddaub 1 + 8 Chirodzo 2016-11-16 00:00:00 12 70 burntbricks 3 + 9 Chirodzo 2016-11-16 00:00:00 8 6 burntbricks 1 +10 Chirodzo 2016-12-16 00:00:00 12 23 burntbricks 5 +# ℹ 121 more rows +# ℹ 7 more variables: memb_assoc , affect_conflicts , +# liv_count , items_owned , no_meals , months_lack_food , +# instanceID +``` + +```r +interviews[-c(7:131), ] # Equivalent to head(interviews) +``` + +```{.output} +# A tibble: 6 × 14 + key_ID village interview_date no_membrs years_liv respondent_wall_type + +1 1 God 2016-11-17 00:00:00 3 4 muddaub +2 1 God 2016-11-17 00:00:00 7 9 muddaub +3 3 God 2016-11-17 00:00:00 10 15 burntbricks +4 4 God 2016-11-17 00:00:00 7 6 burntbricks +5 5 God 2016-11-17 00:00:00 7 40 burntbricks +6 6 God 2016-11-17 00:00:00 3 3 muddaub +# ℹ 8 more variables: rooms , memb_assoc , affect_conflicts , +# liv_count , items_owned , no_meals , months_lack_food , +# instanceID +``` + +`tibble`s can be subset by calling indices (as shown previously), but also by +calling their column names directly: + + +```r +interviews["village"] # Result is a tibble + +interviews[, "village"] # Result is a tibble + +interviews[["village"]] # Result is a vector + +interviews$village # Result is a vector +``` + +In RStudio, you can use the autocompletion feature to get the full and correct +names of the columns. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +1. Create a tibble (`interviews_100`) containing only the data in + row 100 of the `interviews` dataset. + +2. Notice how `nrow()` gave you the number of rows in the tibble? + +- Use that number to pull out just that last row in the tibble. +- Compare that with what you see as the last row using `tail()` to make + sure it's meeting expectations. +- Pull out that last row using `nrow()` instead of the row number. +- Create a new tibble (`interviews_last`) from that last row. + +3. Using the number of rows in the interviews dataset that you found in + question 2, extract the row that is in the middle of the dataset. Store + the content of this middle row in an object named `interviews_middle`. + (hint: This dataset has an odd number of rows, so finding the middle is a + bit trickier than dividing n\_rows by 2. Use the median( ) function and what + you've learned about sequences in R to extract the middle row! + +4. Combine `nrow()` with the `-` notation above to reproduce the behavior of + `head(interviews)`, keeping just the first through 6th rows of the + interviews dataset. + +::::::::::::::: solution + +## Solution + + +```r +## 1. +interviews_100 <- interviews[100, ] +## 2. +# Saving `n_rows` to improve readability and reduce duplication +n_rows <- nrow(interviews) +interviews_last <- interviews[n_rows, ] +## 3. +interviews_middle <- interviews[median(1:n_rows), ] +## 4. +interviews_head <- interviews[-(7:n_rows), ] +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Factors + +R has a special data class, called factor, to deal with categorical data that +you may encounter when creating plots or doing statistical analyses. Factors are +very useful and actually contribute to making R particularly well suited to +working with data. So we are going to spend a little time introducing them. + +Factors represent categorical data. They are stored as integers associated with +labels and they can be ordered (ordinal) or unordered (nominal). Factors +create a structured relation between the different levels (values) of a +categorical variable, such as days of the week or responses to a question in +a survey. This can make it easier to see how one element relates to the +other elements in a column. While factors look (and often behave) like +character vectors, they are actually treated as integer vectors by `R`. So +you need to be very careful when treating them as strings. + +Once created, factors can only contain a pre-defined set of values, known as +*levels*. By default, R always sorts levels in alphabetical order. For +instance, if you have a factor with 2 levels: + + +```r +respondent_floor_type <- factor(c("earth", "cement", "cement", "earth")) +``` + +R will assign `1` to the level `"cement"` and `2` to the level `"earth"` +(because `c` comes before `e`, even though the first element in this vector is +`"earth"`). You can see this by using the function `levels()` and you can find +the number of levels using `nlevels()`: + + +```r +levels(respondent_floor_type) +``` + +```{.output} +[1] "cement" "earth" +``` + +```r +nlevels(respondent_floor_type) +``` + +```{.output} +[1] 2 +``` + +Sometimes, the order of the factors does not matter. Other times you might want +to specify the order because it is meaningful (e.g., "low", "medium", "high"). +It may improve your visualization, or it may be required by a particular type of +analysis. Here, one way to reorder our levels in the `respondent_floor_type` +vector would be: + + +```r +respondent_floor_type # current order +``` + +```{.output} +[1] earth cement cement earth +Levels: cement earth +``` + +```r +respondent_floor_type <- factor(respondent_floor_type, + levels = c("earth", "cement")) + +respondent_floor_type # after re-ordering +``` + +```{.output} +[1] earth cement cement earth +Levels: earth cement +``` + +In R's memory, these factors are represented by integers (1, 2), but are more +informative than integers because factors are self describing: `"cement"`, +`"earth"` is more descriptive than `1`, and `2`. Which one is "earth"? You +wouldn't be able to tell just from the integer data. Factors, on the other hand, +have this information built in. It is particularly helpful when there are many +levels. It also makes renaming levels easier. Let's say we made a mistake and +need to recode "cement" to "brick". We can do this using the `fct_recode()` +function from the **`forcats`** package (included in the **`tidyverse`**) which +provides some extra tools to work with factors. + + +```r +levels(respondent_floor_type) +``` + +```{.output} +[1] "earth" "cement" +``` + +```r +respondent_floor_type <- fct_recode(respondent_floor_type, brick = "cement") + +## as an alternative, we could change the "cement" level directly using the +## levels() function, but we have to remember that "cement" is the second level +# levels(respondent_floor_type)[2] <- "brick" + +levels(respondent_floor_type) +``` + +```{.output} +[1] "earth" "brick" +``` + +```r +respondent_floor_type +``` + +```{.output} +[1] earth brick brick earth +Levels: earth brick +``` + +So far, your factor is unordered, like a nominal variable. R does not know the +difference between a nominal and an ordinal variable. You make your factor an +ordered factor by using the `ordered=TRUE` option inside your factor function. +Note how the reported levels changed from the unordered factor above to the +ordered version below. Ordered levels use the less than sign `<` to denote +level ranking. + + +```r +respondent_floor_type_ordered <- factor(respondent_floor_type, + ordered = TRUE) + +respondent_floor_type_ordered # after setting as ordered factor +``` + +```{.output} +[1] earth brick brick earth +Levels: earth < brick +``` + +### Converting factors + +If you need to convert a factor to a character vector, you use +`as.character(x)`. + + +```r +as.character(respondent_floor_type) +``` + +```{.output} +[1] "earth" "brick" "brick" "earth" +``` + +Converting factors where the levels appear as numbers (such as concentration +levels, or years) to a numeric vector is a little trickier. The `as.numeric()` +function returns the index values of the factor, not its levels, so it will +result in an entirely new (and unwanted in this case) set of numbers. +One method to avoid this is to convert factors to characters, and then to +numbers. Another method is to use the `levels()` function. Compare: + + +```r +year_fct <- factor(c(1990, 1983, 1977, 1998, 1990)) + +as.numeric(year_fct) # Wrong! And there is no warning... +``` + +```{.output} +[1] 3 2 1 4 3 +``` + +```r +as.numeric(as.character(year_fct)) # Works... +``` + +```{.output} +[1] 1990 1983 1977 1998 1990 +``` + +```r +as.numeric(levels(year_fct))[year_fct] # The recommended way. +``` + +```{.output} +[1] 1990 1983 1977 1998 1990 +``` + +Notice that in the recommended `levels()` approach, three important steps occur: + +- We obtain all the factor levels using `levels(year_fct)` +- We convert these levels to numeric values using `as.numeric(levels(year_fct))` +- We then access these numeric values using the underlying integers of the + vector `year_fct` inside the square brackets + +### Renaming factors + +When your data is stored as a factor, you can use the `plot()` function to get a +quick glance at the number of observations represented by each factor level. +Let's extract the `memb_assoc` column from our data frame, convert it into a +factor, and use it to look at the number of interview respondents who were or +were not members of an irrigation association: + + +```r +## create a vector from the data frame column "memb_assoc" +memb_assoc <- interviews$memb_assoc + +## convert it into a factor +memb_assoc <- as.factor(memb_assoc) + +## let's see what it looks like +memb_assoc +``` + +```{.output} + [1] yes no yes no no yes no yes + [16] no no no no no yes + [31] yes no yes yes yes yes yes no no no + [46] no yes yes no yes no yes no no no + [61] yes no yes no no no no yes no yes + [76] yes no no yes no no yes no yes no no yes yes + [91] yes yes yes no no no no yes no no yes yes no no +[106] no no no no no no no no yes no no +[121] no no no no no no no no no yes +Levels: no yes +``` + +```r +## bar plot of the number of interview respondents who were +## members of irrigation association: +plot(memb_assoc) +``` + +Yes/no bar graph showing number of individuals who are members of irrigation association + +Looking at the plot compared to the output of the vector, we can see that in +addition to "no"s and "yes"s, there are some respondents for which the +information about whether they were part of an irrigation association hasn't +been recorded, and encoded as missing data. They do not appear on the plot. +Let's encode them differently so they can counted and visualized in our plot. + + +```r +## Let's recreate the vector from the data frame column "memb_assoc" +memb_assoc <- interviews$memb_assoc + +## replace the missing data with "undetermined" +memb_assoc[is.na(memb_assoc)] <- "undetermined" + +## convert it into a factor +memb_assoc <- as.factor(memb_assoc) + +## let's see what it looks like +memb_assoc +``` + +```{.output} + [1] undetermined yes undetermined undetermined undetermined + [6] undetermined no yes no no + [11] undetermined yes no undetermined yes + [16] undetermined undetermined undetermined undetermined undetermined + [21] no undetermined undetermined no no + [26] no undetermined no yes undetermined + [31] undetermined yes no yes yes + [36] yes undetermined yes undetermined yes + [41] undetermined no no undetermined no + [46] no yes undetermined undetermined yes + [51] undetermined no yes no undetermined + [56] yes no no undetermined no + [61] yes undetermined undetermined undetermined no + [66] yes no no no no + [71] yes undetermined no yes undetermined + [76] undetermined yes no no yes + [81] no no yes no yes + [86] no no undetermined yes yes + [91] yes yes yes no no + [96] no no yes no no +[101] yes yes no undetermined no +[106] no undetermined no no undetermined +[111] no undetermined undetermined no no +[116] no no yes no no +[121] no no no no no +[126] no no no no yes +[131] undetermined +Levels: no undetermined yes +``` + +```r +## bar plot of the number of interview respondents who were +## members of irrigation association: +plot(memb_assoc) +``` + +Bar plot of association membership, showing missing responses. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +- Rename the levels of the factor to have the first letter in uppercase: + "No","Undetermined", and "Yes". + +- Now that we have renamed the factor level to "Undetermined", can you + recreate the barplot such that "Undetermined" is last (after "Yes")? + +::::::::::::::: solution + +## Solution + + +```r +## Rename levels. +memb_assoc <- fct_recode(memb_assoc, No = "no", + Undetermined = "undetermined", Yes = "yes") +## Reorder levels. Note we need to use the new level names. +memb_assoc <- factor(memb_assoc, levels = c("No", "Yes", "Undetermined")) +plot(memb_assoc) +``` + +bar graph showing number of individuals who are members of irrigation association, including undetermined option + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Formatting Dates + +One of the most common issues that new (and experienced!) R users have is +converting date and time information into a variable that is appropriate and +usable during analyses. A best +practice for dealing with date data is to ensure that each component of your +date is available as a separate variable. In our dataset, we have a +column `interview_date` which contains information about the +year, month, and day that the interview was conducted. Let's +convert those dates into three separate columns. + + +```r +str(interviews) +``` + +We are going to use the package **`lubridate`**, which is included in the +**`tidyverse`** installation but not loaded by default, so we have to load +it explicitly with `library(lubridate)`. + +Start by loading the required package: + + +```r +library(lubridate) +``` + +The lubridate function `ymd()` takes a vector representing year, month, and day, +and converts it to a `Date` vector. `Date` is a class of data recognized by R as +being a date and can be manipulated as such. The argument that the function +requires is flexible, but, as a best practice, is a character vector formatted +as "YYYY-MM-DD". + +Let's extract our `interview_date` column and inspect the structure: + + +```r +dates <- interviews$interview_date +str(dates) +``` + +```{.output} + POSIXct[1:131], format: "2016-11-17" "2016-11-17" "2016-11-17" "2016-11-17" "2016-11-17" ... +``` + +When we imported the data in R, `read_csv()` recognized that this column +contained date information. We can now use the `day()`, `month()` and `year()` +functions to extract this information from the date, and create new columns in +our data frame to store it: + + +```r +interviews$day <- day(dates) +interviews$month <- month(dates) +interviews$year <- year(dates) +interviews +``` + +```{.output} +# A tibble: 131 × 17 + key_ID village interview_date no_membrs years_liv respondent_wall_type + + 1 1 God 2016-11-17 00:00:00 3 4 muddaub + 2 1 God 2016-11-17 00:00:00 7 9 muddaub + 3 3 God 2016-11-17 00:00:00 10 15 burntbricks + 4 4 God 2016-11-17 00:00:00 7 6 burntbricks + 5 5 God 2016-11-17 00:00:00 7 40 burntbricks + 6 6 God 2016-11-17 00:00:00 3 3 muddaub + 7 7 God 2016-11-17 00:00:00 6 38 muddaub + 8 8 Chirodzo 2016-11-16 00:00:00 12 70 burntbricks + 9 9 Chirodzo 2016-11-16 00:00:00 8 6 burntbricks +10 10 Chirodzo 2016-12-16 00:00:00 12 23 burntbricks +# ℹ 121 more rows +# ℹ 11 more variables: rooms , memb_assoc , affect_conflicts , +# liv_count , items_owned , no_meals , months_lack_food , +# instanceID , day , month , year +``` + +Notice the three new columns at the end of our data frame. + +In our example above, the `interview_date` column was read in correctly as a +`Date` variable but generally that is not the case. Date columns are often read +in as `character` variables and one can use the `as_date()` function to convert +them to the appropriate `Date/POSIXct`format. + +Let's say we have a vector of dates in character format: + + +```r +char_dates <- c("7/31/2012", "8/9/2014", "4/30/2016") +str(char_dates) +``` + +```{.output} + chr [1:3] "7/31/2012" "8/9/2014" "4/30/2016" +``` + +We can convert this vector to dates as : + + +```r +as_date(char_dates, format = "%m/%d/%Y") +``` + +```{.output} +[1] "2012-07-31" "2014-08-09" "2016-04-30" +``` + +Argument `format` tells the function the order to parse the characters and +identify the month, day and year. The format above is the equivalent of +mm/dd/yyyy. A wrong format can lead to parsing errors or incorrect results. + +For example, observe what happens when we use a lower case y instead of upper +case Y for the year. + + +```r +as_date(char_dates, format = "%m/%d/%y") +``` + +```{.warning} +Warning: 3 failed to parse. +``` + +```{.output} +[1] NA NA NA +``` + +Here, the `%y` part of the format stands for a two-digit year instead of a +four-digit year, and this leads to parsing errors. + +Or in the following example, observe what happens when the month and day +elements of the format are switched. + + +```r +as_date(char_dates, format = "%d/%m/%y") +``` + +```{.warning} +Warning: 3 failed to parse. +``` + +```{.output} +[1] NA NA NA +``` + +Since there is no month numbered 30 or 31, the first and third dates cannot be +parsed. + +We can also use functions `ymd()`, `mdy()` or `dmy()` to convert character +variables to date. + + +```r +mdy(char_dates) +``` + +```{.output} +[1] "2012-07-31" "2014-08-09" "2016-04-30" +``` + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Use read\_csv to read tabular data in R. +- Use factors to represent categorical data in R. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/03-dplyr.md b/03-dplyr.md new file mode 100644 index 000000000..6ee80227c --- /dev/null +++ b/03-dplyr.md @@ -0,0 +1,879 @@ +--- +title: Data Wrangling with dplyr +teaching: 25 +exercises: 15 +source: Rmd +--- + + + +::::::::::::::::::::::::::::::::::::::: objectives + +- Describe the purpose of an R package and the **`dplyr`** package. +- Select certain columns in a dataframe with the **`dplyr`** function `select`. +- Select certain rows in a dataframe according to filtering conditions with the **`dplyr`** function `filter`. +- Link the output of one **`dplyr`** function to the input of another function with the 'pipe' operator `%>%`. +- Add new columns to a dataframe that are functions of existing columns with `mutate`. +- Use the split-apply-combine concept for data analysis. +- Use `summarize`, `group_by`, and `count` to split a dataframe into groups of observations, apply a summary statistics for each group, and then combine the results. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How can I select specific rows and/or columns from a dataframe? +- How can I combine multiple commands into a single command? +- How can I create new columns or remove existing columns from a dataframe? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +**`dplyr`** is a package for making tabular data wrangling easier by using a +limited set of functions that can be combined to extract and summarize insights +from your data. + +Like **`readr`**, **`dplyr`** is a part of the tidyverse. These packages were loaded +in R's memory when we called `library(tidyverse)` earlier. + +::::::::::::::::::::::::::::::::::::::::: callout + +## Note + +The packages in the tidyverse, namely **`dplyr`**, **`tidyr`** and **`ggplot2`** +accept both the British (e.g. *summarise*) and American (e.g. *summarize*) spelling +variants of different function and option names. For this lesson, we utilize +the American spellings of different functions; however, feel free to use +the regional variant for where you are teaching. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## What is an R package? + +The package **`dplyr`** provides easy tools for the most common data +wrangling tasks. It is built to work directly with dataframes, with many +common tasks optimized by being written in a compiled language (C++) (not all R +packages are written in R!). + +There are also packages available for a wide range of tasks including building plots +(**`ggplot2`**, which we'll see later), downloading data from the NCBI database, or +performing statistical analysis on your data set. Many packages such as these are +housed on, and downloadable from, the **C**omprehensive **R** **A**rchive **N**etwork +(CRAN) using `install.packages`. This function makes the package accessible by your R +installation with the command `library()`, as you did with `tidyverse` earlier. + +To easily access the documentation for a package within R or RStudio, use +`help(package = "package_name")`. + +To learn more about **`dplyr`** after the workshop, you may want to check out this +[handy data transformation with **`dplyr`** cheatsheet](https://raw.githubusercontent.com/rstudio/cheatsheets/main/data-transformation.pdf). + +::::::::::::::::::::::::::::::::::::::::: callout + +## Note + +There are alternatives to the `tidyverse` packages for data wrangling, including +the package [`data.table`](https://rdatatable.gitlab.io/data.table/). See this +[comparison](https://mgimond.github.io/rug_2019_12/Index.html) +for example to get a sense of the differences between using `base`, `tidyverse`, and +`data.table`. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Learning **`dplyr`** + +To make sure everyone will use the same dataset for this lesson, we'll read +again the SAFI dataset that we downloaded earlier. + + +```r +## load the tidyverse +library(tidyverse) +library(here) + +interviews <- read_csv(here("data", "SAFI_clean.csv"), na = "NULL") + +## inspect the data +interviews + +## preview the data +# view(interviews) +``` + +We're going to learn some of the most common **`dplyr`** functions: + +- `select()`: subset columns +- `filter()`: subset rows on conditions +- `mutate()`: create new columns by using information from other columns +- `group_by()` and `summarize()`: create summary statistics on grouped data +- `arrange()`: sort results +- `count()`: count discrete values + +## Selecting columns and filtering rows + +To select columns of a dataframe, use `select()`. The first argument to this +function is the dataframe (`interviews`), and the subsequent arguments are the +columns to keep, separated by commas. Alternatively, if you are selecting +columns adjacent to each other, you can use a `:` to select a range of columns, +read as "select columns from \_\_\_ to \_\_\_." You may have done something similar in +the past using subsetting. `select()` is essentially doing the same thing as +subsetting, using a package (`dplyr`) instead of R's base functions. + + +```r +# to select columns throughout the dataframe +select(interviews, village, no_membrs, months_lack_food) +# to do the same thing with subsetting +interviews[c("village","no_membrs","months_lack_food")] +# to select a series of connected columns +select(interviews, village:respondent_wall_type) +``` + +To choose rows based on specific criteria, we can use the `filter()` function. +The argument after the dataframe is the condition we want our final +dataframe to adhere to (e.g. village name is Chirodzo): + + +```r +# filters observations where village name is "Chirodzo" +filter(interviews, village == "Chirodzo") +``` + +```{.output} +# A tibble: 39 × 14 + key_ID village interview_date no_membrs years_liv respondent_wall_type + + 1 8 Chirodzo 2016-11-16 00:00:00 12 70 burntbricks + 2 9 Chirodzo 2016-11-16 00:00:00 8 6 burntbricks + 3 10 Chirodzo 2016-12-16 00:00:00 12 23 burntbricks + 4 34 Chirodzo 2016-11-17 00:00:00 8 18 burntbricks + 5 35 Chirodzo 2016-11-17 00:00:00 5 45 muddaub + 6 36 Chirodzo 2016-11-17 00:00:00 6 23 sunbricks + 7 37 Chirodzo 2016-11-17 00:00:00 3 8 burntbricks + 8 43 Chirodzo 2016-11-17 00:00:00 7 29 muddaub + 9 44 Chirodzo 2016-11-17 00:00:00 2 6 muddaub +10 45 Chirodzo 2016-11-17 00:00:00 9 7 muddaub +# ℹ 29 more rows +# ℹ 8 more variables: rooms , memb_assoc , affect_conflicts , +# liv_count , items_owned , no_meals , months_lack_food , +# instanceID +``` + +We can also specify multiple conditions within the `filter()` function. We can +combine conditions using either "and" or "or" statements. In an "and" +statement, an observation (row) must meet **every** criteria to be included +in the resulting dataframe. To form "and" statements within dplyr, we can pass +our desired conditions as arguments in the `filter()` function, separated by +commas: + + +```r +# filters observations with "and" operator (comma) +# output dataframe satisfies ALL specified conditions +filter(interviews, village == "Chirodzo", + rooms > 1, + no_meals > 2) +``` + +```{.output} +# A tibble: 10 × 14 + key_ID village interview_date no_membrs years_liv respondent_wall_type + + 1 10 Chirodzo 2016-12-16 00:00:00 12 23 burntbricks + 2 49 Chirodzo 2016-11-16 00:00:00 6 26 burntbricks + 3 52 Chirodzo 2016-11-16 00:00:00 11 15 burntbricks + 4 56 Chirodzo 2016-11-16 00:00:00 12 23 burntbricks + 5 65 Chirodzo 2016-11-16 00:00:00 8 20 burntbricks + 6 66 Chirodzo 2016-11-16 00:00:00 10 37 burntbricks + 7 67 Chirodzo 2016-11-16 00:00:00 5 31 burntbricks + 8 68 Chirodzo 2016-11-16 00:00:00 8 52 burntbricks + 9 199 Chirodzo 2017-06-04 00:00:00 7 17 burntbricks +10 200 Chirodzo 2017-06-04 00:00:00 8 20 burntbricks +# ℹ 8 more variables: rooms , memb_assoc , affect_conflicts , +# liv_count , items_owned , no_meals , months_lack_food , +# instanceID +``` + +We can also form "and" statements with the `&` operator instead of commas: + + +```r +# filters observations with "&" logical operator +# output dataframe satisfies ALL specified conditions +filter(interviews, village == "Chirodzo" & + rooms > 1 & + no_meals > 2) +``` + +```{.output} +# A tibble: 10 × 14 + key_ID village interview_date no_membrs years_liv respondent_wall_type + + 1 10 Chirodzo 2016-12-16 00:00:00 12 23 burntbricks + 2 49 Chirodzo 2016-11-16 00:00:00 6 26 burntbricks + 3 52 Chirodzo 2016-11-16 00:00:00 11 15 burntbricks + 4 56 Chirodzo 2016-11-16 00:00:00 12 23 burntbricks + 5 65 Chirodzo 2016-11-16 00:00:00 8 20 burntbricks + 6 66 Chirodzo 2016-11-16 00:00:00 10 37 burntbricks + 7 67 Chirodzo 2016-11-16 00:00:00 5 31 burntbricks + 8 68 Chirodzo 2016-11-16 00:00:00 8 52 burntbricks + 9 199 Chirodzo 2017-06-04 00:00:00 7 17 burntbricks +10 200 Chirodzo 2017-06-04 00:00:00 8 20 burntbricks +# ℹ 8 more variables: rooms , memb_assoc , affect_conflicts , +# liv_count , items_owned , no_meals , months_lack_food , +# instanceID +``` + +In an "or" statement, observations must meet *at least one* of the specified conditions. +To form "or" statements we use the logical operator for "or," which is the vertical bar (|): + + +```r +# filters observations with "|" logical operator +# output dataframe satisfies AT LEAST ONE of the specified conditions +filter(interviews, village == "Chirodzo" | village == "Ruaca") +``` + +```{.output} +# A tibble: 88 × 14 + key_ID village interview_date no_membrs years_liv respondent_wall_type + + 1 8 Chirodzo 2016-11-16 00:00:00 12 70 burntbricks + 2 9 Chirodzo 2016-11-16 00:00:00 8 6 burntbricks + 3 10 Chirodzo 2016-12-16 00:00:00 12 23 burntbricks + 4 23 Ruaca 2016-11-21 00:00:00 10 20 burntbricks + 5 24 Ruaca 2016-11-21 00:00:00 6 4 burntbricks + 6 25 Ruaca 2016-11-21 00:00:00 11 6 burntbricks + 7 26 Ruaca 2016-11-21 00:00:00 3 20 burntbricks + 8 27 Ruaca 2016-11-21 00:00:00 7 36 burntbricks + 9 28 Ruaca 2016-11-21 00:00:00 2 2 muddaub +10 29 Ruaca 2016-11-21 00:00:00 7 10 burntbricks +# ℹ 78 more rows +# ℹ 8 more variables: rooms , memb_assoc , affect_conflicts , +# liv_count , items_owned , no_meals , months_lack_food , +# instanceID +``` + +## Pipes + +What if you want to select and filter at the same time? There are three +ways to do this: use intermediate steps, nested functions, or pipes. + +With intermediate steps, you create a temporary dataframe and use +that as input to the next function, like this: + + +```r +interviews2 <- filter(interviews, village == "Chirodzo") +interviews_ch <- select(interviews2, village:respondent_wall_type) +``` + +This is readable, but can clutter up your workspace with lots of objects that +you have to name individually. With multiple steps, that can be hard to keep +track of. + +You can also nest functions (i.e. one function inside of another), like this: + + +```r +interviews_ch <- select(filter(interviews, village == "Chirodzo"), + village:respondent_wall_type) +``` + +This is handy, but can be difficult to read if too many functions are nested, as +R evaluates the expression from the inside out (in this case, filtering, then +selecting). + +The last option, *pipes*, are a recent addition to R. Pipes let you take the +output of one function and send it directly to the next, which is useful when +you need to do many things to the same dataset. Pipes in R look like `%>%` and +are made available via the **`magrittr`** package, installed automatically with +**`dplyr`**. If you use RStudio, you can type the pipe with: + +- Ctrl + Shift + M if you have a PC or Cmd + + Shift + M if you have a Mac. + + +```r +interviews %>% + filter(village == "Chirodzo") %>% + select(village:respondent_wall_type) +``` + +```{.output} +# A tibble: 39 × 5 + village interview_date no_membrs years_liv respondent_wall_type + + 1 Chirodzo 2016-11-16 00:00:00 12 70 burntbricks + 2 Chirodzo 2016-11-16 00:00:00 8 6 burntbricks + 3 Chirodzo 2016-12-16 00:00:00 12 23 burntbricks + 4 Chirodzo 2016-11-17 00:00:00 8 18 burntbricks + 5 Chirodzo 2016-11-17 00:00:00 5 45 muddaub + 6 Chirodzo 2016-11-17 00:00:00 6 23 sunbricks + 7 Chirodzo 2016-11-17 00:00:00 3 8 burntbricks + 8 Chirodzo 2016-11-17 00:00:00 7 29 muddaub + 9 Chirodzo 2016-11-17 00:00:00 2 6 muddaub +10 Chirodzo 2016-11-17 00:00:00 9 7 muddaub +# ℹ 29 more rows +``` + +In the above code, we use the pipe to send the `interviews` dataset first +through `filter()` to keep rows where `village` is "Chirodzo", then through +`select()` to keep only the columns from `village` to `respondent_wall_type`. Since `%>%` +takes the object on its left and passes it as the first argument to the function +on its right, we don't need to explicitly include the dataframe as an argument +to the `filter()` and `select()` functions any more. + +Some may find it helpful to read the pipe like the word "then". For instance, +in the above example, we take the dataframe `interviews`, *then* we `filter` +for rows with `village == "Chirodzo"`, *then* we `select` columns `village:respondent_wall_type`. +The **`dplyr`** functions by themselves are somewhat simple, +but by combining them into linear workflows with the pipe, we can accomplish +more complex data wrangling operations. + +If we want to create a new object with this smaller version of the data, we +can assign it a new name: + + +```r +interviews_ch <- interviews %>% + filter(village == "Chirodzo") %>% + select(village:respondent_wall_type) + +interviews_ch +``` + +```{.output} +# A tibble: 39 × 5 + village interview_date no_membrs years_liv respondent_wall_type + + 1 Chirodzo 2016-11-16 00:00:00 12 70 burntbricks + 2 Chirodzo 2016-11-16 00:00:00 8 6 burntbricks + 3 Chirodzo 2016-12-16 00:00:00 12 23 burntbricks + 4 Chirodzo 2016-11-17 00:00:00 8 18 burntbricks + 5 Chirodzo 2016-11-17 00:00:00 5 45 muddaub + 6 Chirodzo 2016-11-17 00:00:00 6 23 sunbricks + 7 Chirodzo 2016-11-17 00:00:00 3 8 burntbricks + 8 Chirodzo 2016-11-17 00:00:00 7 29 muddaub + 9 Chirodzo 2016-11-17 00:00:00 2 6 muddaub +10 Chirodzo 2016-11-17 00:00:00 9 7 muddaub +# ℹ 29 more rows +``` + +Note that the final dataframe (`interviews_ch`) is the leftmost part of this +expression. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Using pipes, subset the `interviews` data to include interviews +where respondents were members of an irrigation association +(`memb_assoc`) and retain only the columns `affect_conflicts`, +`liv_count`, and `no_meals`. + +::::::::::::::: solution + +## Solution + + +```r +interviews %>% + filter(memb_assoc == "yes") %>% + select(affect_conflicts, liv_count, no_meals) +``` + +```{.output} +# A tibble: 33 × 3 + affect_conflicts liv_count no_meals + + 1 once 3 2 + 2 never 2 2 + 3 never 2 3 + 4 once 3 2 + 5 frequently 1 3 + 6 more_once 5 2 + 7 more_once 3 2 + 8 more_once 2 3 + 9 once 3 3 +10 never 3 3 +# ℹ 23 more rows +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Mutate + +Frequently you'll want to create new columns based on the values in existing +columns, for example to do unit conversions, or to find the ratio of values in +two columns. For this we'll use `mutate()`. + +We might be interested in the ratio of number of household members +to rooms used for sleeping (i.e. avg number of people per room): + + +```r +interviews %>% + mutate(people_per_room = no_membrs / rooms) +``` + +```{.output} +# A tibble: 131 × 15 + key_ID village interview_date no_membrs years_liv respondent_wall_type + + 1 1 God 2016-11-17 00:00:00 3 4 muddaub + 2 1 God 2016-11-17 00:00:00 7 9 muddaub + 3 3 God 2016-11-17 00:00:00 10 15 burntbricks + 4 4 God 2016-11-17 00:00:00 7 6 burntbricks + 5 5 God 2016-11-17 00:00:00 7 40 burntbricks + 6 6 God 2016-11-17 00:00:00 3 3 muddaub + 7 7 God 2016-11-17 00:00:00 6 38 muddaub + 8 8 Chirodzo 2016-11-16 00:00:00 12 70 burntbricks + 9 9 Chirodzo 2016-11-16 00:00:00 8 6 burntbricks +10 10 Chirodzo 2016-12-16 00:00:00 12 23 burntbricks +# ℹ 121 more rows +# ℹ 9 more variables: rooms , memb_assoc , affect_conflicts , +# liv_count , items_owned , no_meals , months_lack_food , +# instanceID , people_per_room +``` + +We may be interested in investigating whether being a member of an +irrigation association had any effect on the ratio of household members +to rooms. To look at this relationship, we will first remove +data from our dataset where the respondent didn't answer the +question of whether they were a member of an irrigation association. +These cases are recorded as "NULL" in the dataset. + +To remove these cases, we could insert a `filter()` in the chain: + + +```r +interviews %>% + filter(!is.na(memb_assoc)) %>% + mutate(people_per_room = no_membrs / rooms) +``` + +```{.output} +# A tibble: 92 × 15 + key_ID village interview_date no_membrs years_liv respondent_wall_type + + 1 1 God 2016-11-17 00:00:00 7 9 muddaub + 2 7 God 2016-11-17 00:00:00 6 38 muddaub + 3 8 Chirodzo 2016-11-16 00:00:00 12 70 burntbricks + 4 9 Chirodzo 2016-11-16 00:00:00 8 6 burntbricks + 5 10 Chirodzo 2016-12-16 00:00:00 12 23 burntbricks + 6 12 God 2016-11-21 00:00:00 7 20 burntbricks + 7 13 God 2016-11-21 00:00:00 6 8 burntbricks + 8 15 God 2016-11-21 00:00:00 5 30 sunbricks + 9 21 God 2016-11-21 00:00:00 8 20 burntbricks +10 24 Ruaca 2016-11-21 00:00:00 6 4 burntbricks +# ℹ 82 more rows +# ℹ 9 more variables: rooms , memb_assoc , affect_conflicts , +# liv_count , items_owned , no_meals , months_lack_food , +# instanceID , people_per_room +``` + +The `!` symbol negates the result of the `is.na()` function. Thus, if `is.na()` +returns a value of `TRUE` (because the `memb_assoc` is missing), the `!` symbol +negates this and says we only want values of `FALSE`, where `memb_assoc` **is +not** missing. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Create a new dataframe from the `interviews` data that meets the following +criteria: contains only the `village` column and a new column called +`total_meals` containing a value that is equal to the total number of meals +served in the household per day on average (`no_membrs` times `no_meals`). +Only the rows where `total_meals` is greater than 20 should be shown in the +final dataframe. + +**Hint**: think about how the commands should be ordered to produce this data +frame! + +::::::::::::::: solution + +## Solution + + +```r +interviews_total_meals <- interviews %>% + mutate(total_meals = no_membrs * no_meals) %>% + filter(total_meals > 20) %>% + select(village, total_meals) +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Split-apply-combine data analysis and the summarize() function + +Many data analysis tasks can be approached using the *split-apply-combine* +paradigm: split the data into groups, apply some analysis to each group, and +then combine the results. **`dplyr`** makes this very easy through the use of +the `group_by()` function. + +### The `summarize()` function + +`group_by()` is often used together with `summarize()`, which collapses each +group into a single-row summary of that group. `group_by()` takes as arguments +the column names that contain the **categorical** variables for which you want +to calculate the summary statistics. So to compute the average household size by +village: + + +```r +interviews %>% + group_by(village) %>% + summarize(mean_no_membrs = mean(no_membrs)) +``` + +```{.output} +# A tibble: 3 × 2 + village mean_no_membrs + +1 Chirodzo 7.08 +2 God 6.86 +3 Ruaca 7.57 +``` + +You may also have noticed that the output from these calls doesn't run off the +screen anymore. It's one of the advantages of `tbl_df` over dataframe. + +You can also group by multiple columns: + + +```r +interviews %>% + group_by(village, memb_assoc) %>% + summarize(mean_no_membrs = mean(no_membrs)) +``` + +```{.output} +`summarise()` has grouped output by 'village'. You can override using the +`.groups` argument. +``` + +```{.output} +# A tibble: 9 × 3 +# Groups: village [3] + village memb_assoc mean_no_membrs + +1 Chirodzo no 8.06 +2 Chirodzo yes 7.82 +3 Chirodzo 5.08 +4 God no 7.13 +5 God yes 8 +6 God 6 +7 Ruaca no 7.18 +8 Ruaca yes 9.5 +9 Ruaca 6.22 +``` + +Note that the output is a grouped tibble. To obtain an ungrouped tibble, use the +`ungroup` function: + + +```r +interviews %>% + group_by(village, memb_assoc) %>% + summarize(mean_no_membrs = mean(no_membrs)) %>% + ungroup() +``` + +```{.output} +`summarise()` has grouped output by 'village'. You can override using the +`.groups` argument. +``` + +```{.output} +# A tibble: 9 × 3 + village memb_assoc mean_no_membrs + +1 Chirodzo no 8.06 +2 Chirodzo yes 7.82 +3 Chirodzo 5.08 +4 God no 7.13 +5 God yes 8 +6 God 6 +7 Ruaca no 7.18 +8 Ruaca yes 9.5 +9 Ruaca 6.22 +``` + +When grouping both by `village` and `membr_assoc`, we see rows in our table for +respondents who did not specify whether they were a member of an irrigation +association. We can exclude those data from our table using a filter step. + + +```r +interviews %>% + filter(!is.na(memb_assoc)) %>% + group_by(village, memb_assoc) %>% + summarize(mean_no_membrs = mean(no_membrs)) +``` + +```{.output} +`summarise()` has grouped output by 'village'. You can override using the +`.groups` argument. +``` + +```{.output} +# A tibble: 6 × 3 +# Groups: village [3] + village memb_assoc mean_no_membrs + +1 Chirodzo no 8.06 +2 Chirodzo yes 7.82 +3 God no 7.13 +4 God yes 8 +5 Ruaca no 7.18 +6 Ruaca yes 9.5 +``` + +Once the data are grouped, you can also summarize multiple variables at the same +time (and not necessarily on the same variable). For instance, we could add a +column indicating the minimum household size for each village for each group +(members of an irrigation association vs not): + + +```r +interviews %>% + filter(!is.na(memb_assoc)) %>% + group_by(village, memb_assoc) %>% + summarize(mean_no_membrs = mean(no_membrs), + min_membrs = min(no_membrs)) +``` + +```{.output} +`summarise()` has grouped output by 'village'. You can override using the +`.groups` argument. +``` + +```{.output} +# A tibble: 6 × 4 +# Groups: village [3] + village memb_assoc mean_no_membrs min_membrs + +1 Chirodzo no 8.06 4 +2 Chirodzo yes 7.82 2 +3 God no 7.13 3 +4 God yes 8 5 +5 Ruaca no 7.18 2 +6 Ruaca yes 9.5 5 +``` + +It is sometimes useful to rearrange the result of a query to inspect the values. +For instance, we can sort on `min_membrs` to put the group with the smallest +household first: + + +```r +interviews %>% + filter(!is.na(memb_assoc)) %>% + group_by(village, memb_assoc) %>% + summarize(mean_no_membrs = mean(no_membrs), + min_membrs = min(no_membrs)) %>% + arrange(min_membrs) +``` + +```{.output} +`summarise()` has grouped output by 'village'. You can override using the +`.groups` argument. +``` + +```{.output} +# A tibble: 6 × 4 +# Groups: village [3] + village memb_assoc mean_no_membrs min_membrs + +1 Chirodzo yes 7.82 2 +2 Ruaca no 7.18 2 +3 God no 7.13 3 +4 Chirodzo no 8.06 4 +5 God yes 8 5 +6 Ruaca yes 9.5 5 +``` + +To sort in descending order, we need to add the `desc()` function. If we want to +sort the results by decreasing order of minimum household size: + + +```r +interviews %>% + filter(!is.na(memb_assoc)) %>% + group_by(village, memb_assoc) %>% + summarize(mean_no_membrs = mean(no_membrs), + min_membrs = min(no_membrs)) %>% + arrange(desc(min_membrs)) +``` + +```{.output} +`summarise()` has grouped output by 'village'. You can override using the +`.groups` argument. +``` + +```{.output} +# A tibble: 6 × 4 +# Groups: village [3] + village memb_assoc mean_no_membrs min_membrs + +1 God yes 8 5 +2 Ruaca yes 9.5 5 +3 Chirodzo no 8.06 4 +4 God no 7.13 3 +5 Chirodzo yes 7.82 2 +6 Ruaca no 7.18 2 +``` + +### Counting + +When working with data, we often want to know the number of observations found +for each factor or combination of factors. For this task, **`dplyr`** provides +`count()`. For example, if we wanted to count the number of rows of data for +each village, we would do: + + +```r +interviews %>% + count(village) +``` + +```{.output} +# A tibble: 3 × 2 + village n + +1 Chirodzo 39 +2 God 43 +3 Ruaca 49 +``` + +For convenience, `count()` provides the `sort` argument to get results in +decreasing order: + + +```r +interviews %>% + count(village, sort = TRUE) +``` + +```{.output} +# A tibble: 3 × 2 + village n + +1 Ruaca 49 +2 God 43 +3 Chirodzo 39 +``` + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +How many households in the survey have an average of +two meals per day? Three meals per day? Are there any other numbers +of meals represented? + +::::::::::::::: solution + +## Solution + + +```r +interviews %>% + count(no_meals) +``` + +```{.output} +# A tibble: 2 × 2 + no_meals n + +1 2 52 +2 3 79 +``` + +::::::::::::::::::::::::: + +Use `group_by()` and `summarize()` to find the mean, min, and max +number of household members for each village. Also add the number of +observations (hint: see `?n`). + +::::::::::::::: solution + +## Solution + + +```r +interviews %>% + group_by(village) %>% + summarize( + mean_no_membrs = mean(no_membrs), + min_no_membrs = min(no_membrs), + max_no_membrs = max(no_membrs), + n = n() + ) +``` + +```{.output} +# A tibble: 3 × 5 + village mean_no_membrs min_no_membrs max_no_membrs n + +1 Chirodzo 7.08 2 12 39 +2 God 6.86 3 15 43 +3 Ruaca 7.57 2 19 49 +``` + +::::::::::::::::::::::::: + +What was the largest household interviewed in each month? + +::::::::::::::: solution + +## Solution + + +```r +# if not already included, add month, year, and day columns +library(lubridate) # load lubridate if not already loaded +interviews %>% + mutate(month = month(interview_date), + day = day(interview_date), + year = year(interview_date)) %>% + group_by(year, month) %>% + summarize(max_no_membrs = max(no_membrs)) +``` + +```{.output} +`summarise()` has grouped output by 'year'. You can override using the +`.groups` argument. +``` + +```{.output} +# A tibble: 5 × 3 +# Groups: year [2] + year month max_no_membrs + +1 2016 11 19 +2 2016 12 12 +3 2017 4 17 +4 2017 5 15 +5 2017 6 15 +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Use the `dplyr` package to manipulate dataframes. +- Use `select()` to choose variables from a dataframe. +- Use `filter()` to choose data based on values. +- Use `group_by()` and `summarize()` to work with subsets of data. +- Use `mutate()` to create new variables. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/04-tidyr.md b/04-tidyr.md new file mode 100644 index 000000000..5bebd0efc --- /dev/null +++ b/04-tidyr.md @@ -0,0 +1,572 @@ +--- +title: Data Wrangling with tidyr +teaching: 25 +exercises: 15 +source: Rmd +--- + + + +::::::::::::::::::::::::::::::::::::::: objectives + +- Describe the concept of a wide and a long table format and for which purpose those formats are useful. +- Describe the roles of variable names and their associated values when a table is reshaped. +- Reshape a dataframe from long to wide format and back with the `pivot_wider` and `pivot_longer` commands from the **`tidyr`** package. +- Export a dataframe to a csv file. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- How can I reformat a dataframe to meet my needs? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +**`dplyr`** pairs nicely with **`tidyr`** which enables you to swiftly +convert between different data formats (long vs. wide) for plotting and analysis. +To learn more about **`tidyr`** after the workshop, you may want to check out this +[handy data tidying with **`tidyr`** +cheatsheet](https://raw.githubusercontent.com/rstudio/cheatsheets/main/tidyr.pdf). + +To make sure everyone will use the same dataset for this lesson, we'll read +again the SAFI dataset that we downloaded earlier. + + +```r +## load the tidyverse +library(tidyverse) +library(here) + +interviews <- read_csv(here("data", "SAFI_clean.csv"), na = "NULL") + +## inspect the data +interviews + +## preview the data +# view(interviews) +``` + +## Reshaping with pivot\_wider() and pivot\_longer() + +There are essentially three rules that define a "tidy" dataset: + +1. Each variable has its own column +2. Each observation has its own row +3. Each value must have its own cell + +This graphic visually represents the three rules that define a "tidy" dataset: + +![](fig/tidy-data-wickham.png) +*R for Data Science*, Wickham H and Grolemund G ([https://r4ds.had.co.nz/index.html](https://r4ds.had.co.nz/index.html)) +© Wickham, Grolemund 2017 +This image is licenced under Attribution-NonCommercial-NoDerivs 3.0 United States (CC-BY-NC-ND 3.0 US) + +In this section we will explore how these rules are linked to the different +data formats researchers are often interested in: "wide" and "long". This +tutorial will help you efficiently transform your data shape regardless of +original format. First we will explore qualities of the `interviews` data and +how they relate to these different types of data formats. + +### Long and wide data formats + +In the `interviews` data, each row contains the values of variables associated +with each record collected (each interview in the villages), where it is stated +that the `key_ID` was "added to provide a unique Id for each observation" +and the `instance_ID` "does this as well but it is not as convenient to use." + +However, with some inspection, we notice that there are more than one row in the +dataset with the same `key_ID` (as seen below). However, the `instanceID`s +associated with these duplicate `key_ID`s are not the same. Thus, we should +think of `instanceID` as the unique identifier for observations! + + +```r +interviews %>% + select(key_ID, village, interview_date, instanceID) +``` + +```{.output} +# A tibble: 131 × 4 + key_ID village interview_date instanceID + + 1 1 God 2016-11-17 00:00:00 uuid:ec241f2c-0609-46ed-b5e8-fe575f6cefef + 2 1 God 2016-11-17 00:00:00 uuid:099de9c9-3e5e-427b-8452-26250e840d6e + 3 3 God 2016-11-17 00:00:00 uuid:193d7daf-9582-409b-bf09-027dd36f9007 + 4 4 God 2016-11-17 00:00:00 uuid:148d1105-778a-4755-aa71-281eadd4a973 + 5 5 God 2016-11-17 00:00:00 uuid:2c867811-9696-4966-9866-f35c3e97d02d + 6 6 God 2016-11-17 00:00:00 uuid:daa56c91-c8e3-44c3-a663-af6a49a2ca70 + 7 7 God 2016-11-17 00:00:00 uuid:ae20a58d-56f4-43d7-bafa-e7963d850844 + 8 8 Chirodzo 2016-11-16 00:00:00 uuid:d6cee930-7be1-4fd9-88c0-82a08f90fb5a + 9 9 Chirodzo 2016-11-16 00:00:00 uuid:846103d2-b1db-4055-b502-9cd510bb7b37 +10 10 Chirodzo 2016-12-16 00:00:00 uuid:8f4e49bc-da81-4356-ae34-e0d794a23721 +# ℹ 121 more rows +``` + +As seen in the code below, for each interview date in each village no +`instanceID`s are the same. Thus, this format is what is called a "long" data +format, where each observation occupies only one row in the dataframe. + + +```r +interviews %>% + filter(village == "Chirodzo") %>% + select(key_ID, village, interview_date, instanceID) %>% + sample_n(size = 10) +``` + +```{.output} +# A tibble: 10 × 4 + key_ID village interview_date instanceID + + 1 46 Chirodzo 2016-11-17 00:00:00 uuid:35f297e0-aa5d-4149-9b7b-4965004cfc37 + 2 43 Chirodzo 2016-11-17 00:00:00 uuid:b4dff49f-ef27-40e5-a9d1-acf287b47358 + 3 67 Chirodzo 2016-11-16 00:00:00 uuid:6c15d667-2860-47e3-a5e7-7f679271e419 + 4 199 Chirodzo 2017-06-04 00:00:00 uuid:ffc83162-ff24-4a87-8709-eff17abc0b3b + 5 9 Chirodzo 2016-11-16 00:00:00 uuid:846103d2-b1db-4055-b502-9cd510bb7b37 + 6 56 Chirodzo 2016-11-16 00:00:00 uuid:973c4ac6-f887-48e7-aeaf-4476f2cfab76 + 7 54 Chirodzo 2016-11-16 00:00:00 uuid:273ab27f-9be3-4f3b-83c9-d3e1592de919 + 8 45 Chirodzo 2016-11-17 00:00:00 uuid:e3554d22-35b1-4fb9-b386-dd5866ad5792 + 9 58 Chirodzo 2016-11-16 00:00:00 uuid:a7a3451f-cd0d-4027-82d9-8dcd1234fcca +10 57 Chirodzo 2016-11-16 00:00:00 uuid:a7184e55-0615-492d-9835-8f44f3b03a71 +``` + +We notice that the layout or format of the `interviews` data is in a format that +adheres to rules 1-3, where + +- each column is a variable +- each row is an observation +- each value has its own cell + +This is called a "long" data format. But, we notice that each column represents +a different variable. In the "longest" data format there would only be three +columns, one for the id variable, one for the observed variable, and one for the +observed value (of that variable). This data format is quite unsightly +and difficult to work with, so you will rarely see it in use. + +Alternatively, in a "wide" data format we see modifications to rule 1, where +each column no longer represents a single variable. Instead, columns can +represent different levels/values of a variable. For instance, in some data you +encounter the researchers may have chosen for every survey date to be a +different column. + +These may sound like dramatically different data layouts, but there are some +tools that make transitions between these layouts much simpler than you might +think! The gif below shows how these two formats relate to each other, and +gives you an idea of how we can use R to shift from one format to the other. + +![](fig/tidyr-pivot_wider_longer.gif) +Long and wide dataframe layouts mainly affect readability. You may find that +visually you may prefer the "wide" format, since you can see more of the data on +the screen. However, all of the R functions we have used thus far expect for +your data to be in a "long" data format. This is because the long format is more +machine readable and is closer to the formatting of databases. + +### Questions which warrant different data formats + +In interviews, each row contains the values of variables associated with each +record (the unit), values such as the village of the respondent, the number +of household members, or the type of wall their house had. This format allows +for us to make comparisons across individual surveys, but what if we wanted to +look at differences in households grouped by different types of housing +construction materials? + +To facilitate this comparison we would need to create a new table where each row +(the unit) was comprised of values of variables associated with housing material +(e.g. the `respondent_wall_type`). In practical terms this means the values of +the wall construction materials in `respondent_wall_type` (e.g. muddaub, +burntbricks, cement, sunbricks) would become the names of column variables and +the cells would contain values of `TRUE` or `FALSE`, for whether that house had +a wall made of that material. + +Once we we've created this new table, we can explore the relationship within and +between villages. The key point here is that we are still following a tidy data +structure, but we have **reshaped** the data according to the observations of +interest. + +Alternatively, if the interview dates were spread across multiple columns, and +we were interested in visualizing, within each village, how irrigation +conflicts have changed over time. This would require for the interview date to +be included in a single column rather than spread across multiple columns. Thus, +we would need to transform the column names into values of a variable. + +We can do both these of transformations with two `tidyr` functions, +`pivot_wider()` and `pivot_longer()`. + +## Pivoting wider + +`pivot_wider()` takes three principal arguments: + +1. the data +2. the *names\_from* column variable whose values will become new column names. +3. the *values\_from* column variable whose values will fill the new column + variables. + +Further arguments include `values_fill` which, if set, fills in missing values +with the value provided. + +Let's use `pivot_wider()` to transform interviews to create new columns for each +type of wall construction material. We will make use of the pipe operator as +have done before. Because both the `names_from` and `values_from` parameters +must come from column values, we will create a dummy column (we'll name it +`wall_type_logical`) to hold the value `TRUE`, which we will then place into the +appropriate column that corresponds to the wall construction material for that +respondent. When using `mutate()` if you give a single value, it will be used +for all observations in the dataset. + +For each row in our newly pivoted table, only one of the newly created wall type +columns will have a value of `TRUE`, since each house can only be made of one +wall type. The default value that `pivot_wider` uses to fill the other wall +types is `NA`. + +![](fig/pivot_long_to_wide.png) + +If instead of the default value being `NA`, we wanted these values to be `FALSE`, +we can insert a default value into the `values_fill` argument. By including +`values_fill = list(wall_type_logical = FALSE)` inside `pivot_wider()`, we can +fill the remainder of the wall type columns for that row with the value `FALSE`. + + +```r +interviews_wide <- interviews %>% + mutate(wall_type_logical = TRUE) %>% + pivot_wider(names_from = respondent_wall_type, + values_from = wall_type_logical, + values_fill = list(wall_type_logical = FALSE)) +``` + +View the `interviews_wide` dataframe and notice that there is no longer a +column titled `respondent_wall_type`. This is because there is a default +parameter in `pivot_wider()` that drops the original column. The values that +were in that column have now become columns named `muddaub`, `burntbricks`, +`sunbricks`, and `cement`. You can use `dim(interviews)` and +`dim(interviews_wide)` to see how the number of columns has changed between +the two datasets. + +## Pivoting longer + +The opposing situation could occur if we had been provided with data in the form +of `interviews_wide`, where the building materials are column names, but we +wish to treat them as values of a `respondent_wall_type` variable instead. + +In this situation we are gathering these columns turning them into a pair +of new variables. One variable includes the column names as values, and the +other variable contains the values in each cell previously associated with the +column names. We will do this in two steps to make this process a bit clearer. + +`pivot_longer()` takes four principal arguments: + +1. the data +2. *cols* are the names of the columns we use to fill the a new values variable + (or to drop). +3. the *names\_to* column variable we wish to create from the *cols* provided. +4. the *values\_to* column variable we wish to create and fill with values + associated with the *cols* provided. + +To recreate our original dataframe, we will use the following: + +1. the data - `interviews_wide` +2. a list of *cols* (columns) that are to be reshaped; these can be specified + using a `:` if the columns to be reshaped are in one area of the dataframe, + or with a vector (`c()`) command if the columns are spread throughout the + dataframe. +3. the *names\_to* column will be a character string of the name the column + these columns will be collapsed into ("respondent\_wall\_type"). +4. the *values\_to* column will be a character string of the name of the + column the values of the collapsed columns will be inserted into + ("wall\_type\_logical"). This column will be populated with values of + `TRUE` or `FALSE`. + + +```r +interviews_long <- interviews_wide %>% + pivot_longer(cols = c("muddaub", "cement", "sunbricks", "burntbricks"), + names_to = "respondent_wall_type", + values_to = "wall_type_logical") +``` + +![](fig/pivot_wide_to_long.png) + +This creates a dataframe with 524 rows (4 rows per +interview respondent). The four rows for each respondent differ only in the +value of the "respondent\_wall\_type" and "wall\_type\_logical" columns. View the +data to see what this looks like. + +Only one row for each interview respondent is informative--we know that if the +house walls are made of "sunbrick" they aren't made of any other the other +materials. Therefore, it would make sense to filter our dataset to only keep +values where `wall_type_logical` is `TRUE`. Because `wall_type_logical` is +already either `TRUE` or `FALSE`, when passing the column name to `filter()`, +it will automatically already only keep rows where this column has the value +`TRUE`. We can then remove the `wall_type_logical` column. + +We do all of these steps together in the next chunk of code: + + +```r +interviews_long <- interviews_wide %>% + pivot_longer(cols = c(burntbricks, cement, muddaub, sunbricks), + names_to = "respondent_wall_type", + values_to = "wall_type_logical") %>% + filter(wall_type_logical) %>% + select(-wall_type_logical) +``` + +View both `interviews_long` and `interviews_wide` and compare their structure. + +## Applying `pivot_wider()` to clean our data + +Now that we've learned about `pivot_longer()` and `pivot_wider()` we're going to +put these functions to use to fix a problem with the way that our data is +structured. In the spreadsheets lesson, we learned that it's best practice to +have only a single piece of information in each cell of your spreadsheet. In +this dataset, we have several columns which contain multiple pieces of +information. For example, the `items_owned` column contains information about +whether our respondents owned a fridge, a television, etc. To make this data +easier to analyze, we will split this column and create a new column for each +item. Each cell in that column will either be `TRUE` or `FALSE` and will +indicate whether that interview respondent owned that item (similar to what +we did previously with `wall_type`). + + +```r +interviews_items_owned <- interviews %>% + separate_rows(items_owned, sep = ";") %>% + replace_na(list(items_owned = "no_listed_items")) %>% + mutate(items_owned_logical = TRUE) %>% + pivot_wider(names_from = items_owned, + values_from = items_owned_logical, + values_fill = list(items_owned_logical = FALSE)) + +nrow(interviews_items_owned) +``` + +```{.output} +[1] 131 +``` + +There are a couple of new concepts in this code chunk, so let's walk through it +line by line. First we create a new object (`interviews_items_owned`) based on +the `interviews` dataframe. + + +```r +interviews_items_owned <- interviews %>% +``` + +Then we use the new function `separate_rows()` from the **`tidyr`** package to +separate the values of `items_owned` based on the presence of semi-colons (`;`). +The values of this variable were multiple items separated by semi-colons, so +this action creates a row for each item listed in a household's possession. +Thus, we end up with a long format version of the dataset, with multiple rows +for each respondent. For example, if a respondent has a television and a solar +panel, that respondent will now have two rows, one with "television" and the +other with "solar panel" in the `items_owned` column. + + +```r +separate_rows(items_owned, sep = ";") %>% +``` + +You may notice that one of the columns is called `´NA´`. This is because some +of the respondents did not own any of the items that was in the interviewer's +list. We can use the `replace_na()` function to change these `NA` values to +something more meaningful. The `replace_na()` function expects for you to give +it a `list()` of columns that you would like to replace the `NA` values in, +and the value that you would like to replace the `NA`s. This ends up looking +like this: + + +```r +replace_na(list(items_owned = "no_listed_items")) %>% +``` + +Next, we create a new variable named `items_owned_logical`, which has one value +(`TRUE`) for every row. This makes sense, since each item in every row was owned +by that household. We are constructing this variable so that when spread the +`items_owned` across multiple columns, we can fill the values of those columns +with logical values describing whether the household did (`TRUE`) or didn't +(`FALSE`) own that particular item. + + +```r +mutate(items_owned_logical = TRUE) %>% +``` + +Lastly, we use `pivot_wider()` to switch from long format to wide format. This +creates a new column for each of the unique values in the `items_owned` column, +and fills those columns with the values of `items_owned_logical`. We also +declare that for items that are missing, we want to fill those cells with the +value of `FALSE` instead of `NA`. + + +```r +pivot_wider(names_from = items_owned, + values_from = items_owned_logical, + values_fill = list(items_owned_logical = FALSE)) +``` + +View the `interviews_items_owned` dataframe. It should have +131 rows (the same number of rows you had originally), but +extra columns for each item. How many columns were added? + +This format of the data allows us to do interesting things, like make a table +showing the number of respondents in each village who owned a particular item: + + +```r +interviews_items_owned %>% + filter(bicycle) %>% + group_by(village) %>% + count(bicycle) +``` + +```{.output} +# A tibble: 3 × 3 +# Groups: village [3] + village bicycle n + +1 Chirodzo TRUE 17 +2 God TRUE 23 +3 Ruaca TRUE 20 +``` + +Or below we calculate the average number of items from the list owned by +respondents in each village. This code uses the `rowSums()` function to count +the number of `TRUE` values in the `bicycle` to `car` columns for each row, +hence its name. Note that we replaced `NA` values with the value `no_listed_items`, +so we must exclude this value in the aggregation. We then group the data by +villages and calculate the mean number of items, so each average is grouped +by village. + + +```r +interviews_items_owned %>% + mutate(number_items = rowSums(select(., bicycle:car))) %>% + group_by(village) %>% + summarize(mean_items = mean(number_items)) +``` + +```{.output} +# A tibble: 3 × 2 + village mean_items + +1 Chirodzo 4.62 +2 God 4.07 +3 Ruaca 5.63 +``` + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +1. Create a new dataframe (named `interviews_months_lack_food`) that has one + column for each month and records `TRUE` or `FALSE` for whether each interview + respondent was lacking food in that month. + +::::::::::::::: solution + +## Solution + + +```r +interviews_months_lack_food <- interviews %>% + separate_rows(months_lack_food, sep = ";") %>% + mutate(months_lack_food_logical = TRUE) %>% + pivot_wider(names_from = months_lack_food, + values_from = months_lack_food_logical, + values_fill = list(months_lack_food_logical = FALSE)) +``` + +::::::::::::::::::::::::: + +2. How many months (on average) were respondents without food if + they did belong to an irrigation association? What about if they didn't? + +::::::::::::::: solution + +## Solution + + +```r +interviews_months_lack_food %>% + mutate(number_months = rowSums(select(., Jan:May))) %>% + group_by(memb_assoc) %>% + summarize(mean_months = mean(number_months)) +``` + +```{.output} +# A tibble: 3 × 2 + memb_assoc mean_months + +1 no 2 +2 yes 2.30 +3 2.82 +``` + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Exporting data + +Now that you have learned how to use **`dplyr`** and **`tidyr`** to wrangle your +raw data, you may want to export these new data sets to share them with your +collaborators or for archival purposes. + +Similar to the `read_csv()` function used for reading CSV files into R, there is +a `write_csv()` function that generates CSV files from dataframes. + +Before using `write_csv()`, we are going to create a new folder, `data_output`, +in our working directory that will store this generated dataset. We don't want +to write generated datasets in the same directory as our raw data. It's good +practice to keep them separate. The `data` folder should only contain the raw, +unaltered data, and should be left alone to make sure we don't delete or modify +it. In contrast, our script will generate the contents of the `data_output` +directory, so even if the files it contains are deleted, we can always +re-generate them. + +In preparation for our next lesson on plotting, we are going to create a version +of the dataset where each of the columns includes only one data value. To do +this, we will use `pivot_wider` to expand the `months_lack_food` and +`items_owned` columns. We will also create a couple of summary columns. + + +```r +interviews_plotting <- interviews %>% + ## pivot wider by items_owned + separate_rows(items_owned, sep = ";") %>% + ## if there were no items listed, changing NA to no_listed_items + replace_na(list(items_owned = "no_listed_items")) %>% + mutate(items_owned_logical = TRUE) %>% + pivot_wider(names_from = items_owned, + values_from = items_owned_logical, + values_fill = list(items_owned_logical = FALSE)) %>% + ## pivot wider by months_lack_food + separate_rows(months_lack_food, sep = ";") %>% + mutate(months_lack_food_logical = TRUE) %>% + pivot_wider(names_from = months_lack_food, + values_from = months_lack_food_logical, + values_fill = list(months_lack_food_logical = FALSE)) %>% + ## add some summary columns + mutate(number_months_lack_food = rowSums(select(., Jan:May))) %>% + mutate(number_items = rowSums(select(., bicycle:car))) +``` + +Now we can save this dataframe to our `data_output` directory. + + +```r +write_csv (interviews_plotting, file = "data_output/interviews_plotting.csv") +``` + + + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- Use the `tidyr` package to change the layout of dataframes. +- Use `pivot_wider()` to go from long to wide format. +- Use `pivot_longer()` to go from wide to long format. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/05-ggplot2.md b/05-ggplot2.md new file mode 100644 index 000000000..c1ee6f01a --- /dev/null +++ b/05-ggplot2.md @@ -0,0 +1,905 @@ +--- +title: Data Visualisation with ggplot2 +teaching: 80 +exercises: 35 +source: Rmd +--- + + + +::::::::::::::::::::::::::::::::::::::: objectives + +- Produce scatter plots, boxplots, and barplots using ggplot. +- Set universal plot settings. +- Describe what faceting is and apply faceting in ggplot. +- Modify the aesthetics of an existing ggplot plot (including axis labels and colour). +- Build complex and customized plots from data in a data frame. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What are the components of a ggplot? +- How do I create scatterplots, boxplots, and barplots? +- How can I change the aesthetics (ex. colour, transparency) of my plot? +- How can I create multiple plots at once? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +We start by loading the required package. **`ggplot2`** is also included in the +**`tidyverse`** package. + + +```r +library(tidyverse) +``` + +If not still in the workspace, load the data we saved in the previous lesson. + + +```r +interviews_plotting <- read_csv("data_output/interviews_plotting.csv") +``` + +```{.output} +Rows: 131 Columns: 45 +── Column specification ──────────────────────────────────────────────────────── +Delimiter: "," +chr (5): village, respondent_wall_type, memb_assoc, affect_conflicts, inst... +dbl (8): key_ID, no_membrs, years_liv, rooms, liv_count, no_meals, number_... +lgl (31): bicycle, television, solar_panel, table, cow_cart, radio, cow_plo... +dttm (1): interview_date + +ℹ Use `spec()` to retrieve the full column specification for this data. +ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message. +``` + +If you were unable to complete the previous lesson or did not save the data, +then you can create it now. + + +```r +## Not run, but can be used to load in data from previous lesson! +interviews_plotting <- interviews %>% + ## pivot wider by items_owned + separate_rows(items_owned, sep = ";") %>% + ## if there were no items listed, changing NA to no_listed_items + replace_na(list(items_owned = "no_listed_items")) %>% + mutate(items_owned_logical = TRUE) %>% + pivot_wider(names_from = items_owned, + values_from = items_owned_logical, + values_fill = list(items_owned_logical = FALSE)) %>% + ## pivot wider by months_lack_food + separate_rows(months_lack_food, sep = ";") %>% + mutate(months_lack_food_logical = TRUE) %>% + pivot_wider(names_from = months_lack_food, + values_from = months_lack_food_logical, + values_fill = list(months_lack_food_logical = FALSE)) %>% + ## add some summary columns + mutate(number_months_lack_food = rowSums(select(., Jan:May))) %>% + mutate(number_items = rowSums(select(., bicycle:car))) +``` + +## Plotting with **`ggplot2`** + +**`ggplot2`** is a plotting package that makes it simple to create complex plots +from data stored in a data frame. It provides a programmatic interface for +specifying what variables to plot, how they are displayed, and general visual +properties. Therefore, we only need minimal changes if the underlying data +change or if we decide to change from a bar plot to a scatterplot. This helps in +creating publication quality plots with minimal amounts of adjustments and +tweaking. + +**`ggplot2`** functions work best with data in the 'long' format, i.e., a column for every +dimension, and a row for every observation. Well-structured data will save you +lots of time when making figures with **`ggplot2`** + +ggplot graphics are built step by step by adding new elements. Adding layers in +this fashion allows for extensive flexibility and customization of plots. + +Each chart built with ggplot2 must include the following + +- Data + +- Aesthetic mapping (aes) + + - Describes how variables are mapped onto graphical attributes + - Visual attribute of data including x-y axes, color, fill, shape, and alpha + +- Geometric objects (geom) + + - Determines how values are rendered graphically, as bars (`geom_bar`), scatterplot (`geom_point`), line (`geom_line`), etc. + +Thus, the template for graphic in ggplot2 is: + +``` + %>% + ggplot(aes()) + + () +``` + +Remember from the last lesson that the pipe operator `%>%` places the result of the previous line(s) into the first argument of the function. **`ggplot`** is a function that expects a data frame to be the first argument. This allows for us to change from specifying the `data =` argument within the `ggplot` function and instead pipe the data into the function. + +- use the `ggplot()` function and bind the plot to a specific data frame. + + +```r +interviews_plotting %>% + ggplot() +``` + +- define a mapping (using the aesthetic (`aes`) function), by selecting the variables to be plotted and specifying how to present them in the graph, e.g. as x/y positions or characteristics such as size, shape, color, etc. + + +```r +interviews_plotting %>% + ggplot(aes(x = no_membrs, y = number_items)) +``` + +- add 'geoms' – graphical representations of the data in the plot (points, + lines, bars). **`ggplot2`** offers many different geoms; we will use some + common ones today, including: + + - `geom_point()` for scatter plots, dot plots, etc. + - `geom_boxplot()` for, well, boxplots! + - `geom_line()` for trend lines, time series, etc. + +To add a geom to the plot use the `+` operator. Because we have two continuous variables, let's use `geom_point()` first: + + +```r +interviews_plotting %>% + ggplot(aes(x = no_membrs, y = number_items)) + + geom_point() +``` + + + +The `+` in the **`ggplot2`** package is particularly useful because it allows +you to modify existing `ggplot` objects. This means you can easily set up plot +templates and conveniently explore different types of plots, so the above plot +can also be generated with code like this, similar to the "intermediate steps" +approach in the previous lesson: + + +```r +# Assign plot to a variable +interviews_plot <- interviews_plotting %>% + ggplot(aes(x = no_membrs, y = number_items)) + +# Draw the plot as a dot plot +interviews_plot + + geom_point() +``` + +::::::::::::::::::::::::::::::::::::::::: callout + +## Notes + +- Anything you put in the `ggplot()` function can be seen by any geom layers + that you add (i.e., these are universal plot settings). This includes the x- + and y-axis mapping you set up in `aes()`. +- You can also specify mappings for a given geom independently of the mapping + defined globally in the `ggplot()` function. +- The `+` sign used to add new layers must be placed at the end of the line + containing the *previous* layer. If, instead, the `+` sign is added at the + beginning of the line containing the new layer, **`ggplot2`** will not add + the new layer and will return an error message. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + +```r +## This is the correct syntax for adding layers +interviews_plot + + geom_point() + +## This will not add the new layer and will return an error message +interviews_plot ++ geom_point() +``` + +## Building your plots iteratively + +Building plots with **`ggplot2`** is typically an iterative process. We start by +defining the dataset we'll use, lay out the axes, and choose a geom: + + +```r +interviews_plotting %>% + ggplot(aes(x = no_membrs, y = number_items)) + + geom_point() +``` + +Scatter plot of number of items owned versus number of household members. + +Then, we start modifying this plot to extract more information from it. For +instance, when inspecting the plot we notice that points only appear at the +intersection of whole numbers of `no_membrs` and `number_items`. Also, from a +rough estimate, it looks like there are far fewer dots on the plot than there +rows in our dataframe. This should lead us to believe that there may be multiple +observations plotted on top of each other (e.g. three observations where +`no_membrs` is 3 and `number_items` is 1). + +There are two main ways to alleviate overplotting issues: + +1. changing the transparency of the points +2. jittering the location of the points + +Let's first explore option 1, changing the transparency of the points. What we +mean when we say "transparency" we mean the opacity of point, or your ability to +see through the point. We can control the transparency of the points with the +`alpha` argument to `geom_point`. Values of `alpha` range from 0 to 1, with +lower values corresponding to more transparent colors (an `alpha` of 1 is the +default value). Specifically, an alpha of 0.1, would make a point one-tenth as +opaque as a normal point. Stated differently ten points stacked on top of +each other would correspond to a normal point. + +Here, we change the `alpha` to 0.5, in an attempt to help fix the overplotting. +While the overplotting isn't solved, adding transparency begins to address this +problem, as the points where there are overlapping observations are darker (as +opposed to lighter gray): + + +```r +interviews_plotting %>% + ggplot(aes(x = no_membrs, y = number_items)) + + geom_point(alpha = 0.3) +``` + +Scatter plot of number of items owned versus number of household members, with transparency added to points. + +That only helped a little bit with the overplotting problem, so let's try option +two. We can jitter the points on the plot, so that we can see each point in the +locations where there are overlapping points. Jittering introduces a little bit +of randomness into the position of our points. You can think of this process as +taking the overplotted graph and giving it a tiny shake. The points will move a +little bit side-to-side and up-and-down, but their position from the original +plot won't dramatically change. + +We can jitter our points using the `geom_jitter()` function instead of the +`geom_point()` function, as seen below: + + +```r +interviews_plotting %>% + ggplot(aes(x = no_membrs, y = number_items)) + + geom_jitter() +``` + +Scatter plot of number of items owned versus number of household members, showing jitter. + +The `geom_jitter()` function allows for us to specify the amount of random +motion in the jitter, using the `width` and `height` arguments. When we don't +specify values for `width` and `height`, `geom_jitter()` defaults to 40% of the +resolution of the data (the smallest change that can be measured). Hence, if we +would like *less* spread in our jitter than was default, we should pick values +between 0.1 and 0.4. Experiment with the values to see how your plot changes. + + +```r +interviews_plotting %>% + ggplot(aes(x = no_membrs, y = number_items)) + + geom_jitter(alpha = 0.3, + width = 0.2, + height = 0.2) +``` + +Scatter plot of number of items owned versus number of household members, with jitter and transparency. + +For our final change, we can also add colours for all the points by specifying +a `color` argument inside the `geom_jitter()` function: + + +```r +interviews_plotting %>% + ggplot(aes(x = no_membrs, y = number_items)) + + geom_jitter(alpha = 0.3, + color = "blue", + width = 0.2, + height = 0.2) +``` + +Scatter plot of number of items owned versus number of household members, showing points as blue. + +To colour each village in the plot differently, you could use a vector as an input +to the argument **`color`**. However, because we are now mapping features of the +data to a colour, instead of setting one colour for all points, the colour of the +points now needs to be set inside a call to the **`aes`** function. When we map +a variable in our data to the colour of the points, **`ggplot2`** will provide a +different colour corresponding to the different values of the variable. We will +continue to specify the value of **`alpha`**, **`width`**, and **`height`** +outside of the **`aes`** function because we are using the same value for +every point. ggplot2 understands both the Commonwealth English and +American English spellings for colour, i.e., you can use either `color` +or `colour`. Here is an example where we color points by the **`village`** +of the observation: + + +```r +interviews_plotting %>% + ggplot(aes(x = no_membrs, y = number_items)) + + geom_jitter(aes(color = village), alpha = 0.3, width = 0.2, height = 0.2) +``` + + + +There appears to be a positive trend between number of household +members and number of items owned (from the list provided). Additionally, +this trend does not appear to be different by village. + +::::::::::::::::::::::::::::::::::::::::: callout + +## Notes + +As you will learn, there are multiple ways to plot the a relationship +between variables. Another way to plot data with overlapping points is +to use the `geom_count` plotting function. The `geom_count()` function +makes the size of each point representative of the number of data items +of that type and the legend gives point sizes associated to particular +numbers of items. + + +```r +interviews_plotting %>% + ggplot(aes(x = no_membrs, y = number_items, color = village)) + + geom_count() +``` + +Previous plot with dots colored by village. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Use what you just learned to create a scatter plot of `rooms` by `village` +with the `respondent_wall_type` showing in different colours. Does this +seem like a good way to display the relationship between these variables? +What other kinds of plots might you use to show this type of data? + +::::::::::::::: solution + +## Solution + + +```r +interviews_plotting %>% + ggplot(aes(x = village, y = rooms)) + + geom_jitter(aes(color = respondent_wall_type), + alpha = 0.3, + width = 0.2, + height = 0.2) +``` + +Scatter plot showing positive trend between number of household members and number of items owned. + +This is not a great way to show this type of data because it is difficult to +distinguish between villages. What other plot types could help you visualize +this relationship better? + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Boxplot + +We can use boxplots to visualize the distribution of rooms for each +wall type: + + +```r +interviews_plotting %>% + ggplot(aes(x = respondent_wall_type, y = rooms)) + + geom_boxplot() +``` + +Box plot of number of rooms by wall type. + +By adding points to a boxplot, we can have a better idea of the number of +measurements and of their distribution: + + +```r +interviews_plotting %>% + ggplot(aes(x = respondent_wall_type, y = rooms)) + + geom_boxplot(alpha = 0) + + geom_jitter(alpha = 0.3, + color = "tomato", + width = 0.2, + height = 0.2) +``` + +Previous plot with dot plot added as additional layer to show individual values. Boxplot layer is transparent. + +We can see that muddaub houses and sunbrick houses tend to be smaller than +burntbrick houses. + +Notice how the boxplot layer is behind the jitter layer? What do you need to +change in the code to put the boxplot layer in front of the jitter layer? + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Boxplots are useful summaries, but hide the *shape* of the distribution. For +example, if the distribution is bimodal, we would not see it in a +boxplot. An alternative to the boxplot is the violin plot, where the shape +(of the density of points) is drawn. + +- Replace the box plot with a violin plot; see `geom_violin()`. + +::::::::::::::: solution + +## Solution + + +```r +interviews_plotting %>% + ggplot(aes(x = respondent_wall_type, y = rooms)) + + geom_violin(alpha = 0) + + geom_jitter(alpha = 0.5, color = "tomato") +``` + +```{.warning} +Warning: Groups with fewer than two data points have been dropped. +``` + + + +::::::::::::::::::::::::: + +So far, we've looked at the distribution of room number within wall type. Try +making a new plot to explore the distribution of another variable within wall +type. + +- Create a boxplot for `liv_count` for each wall type. Overlay the boxplot + layer on a jitter layer to show actual measurements. + +::::::::::::::: solution + +## Solution + + +```r +interviews_plotting %>% + ggplot(aes(x = respondent_wall_type, y = liv_count)) + + geom_boxplot(alpha = 0) + + geom_jitter(alpha = 0.5, width = 0.2, height = 0.2) +``` + +Box plot of number of livestock owned by wall type, with dot plot added as additional layer to show individual values. + +::::::::::::::::::::::::: + +- Add colour to the data points on your boxplot according to whether the + respondent is a member of an irrigation association (`memb_assoc`). + +::::::::::::::: solution + +## Solution + + +```r +interviews_plotting %>% + ggplot(aes(x = respondent_wall_type, y = liv_count)) + + geom_boxplot(alpha = 0) + + geom_jitter(aes(color = memb_assoc), alpha = 0.5, width = 0.2, height = 0.2) +``` + +Previous plot with dots colored based on whether respondent was a member of an irrigation association. + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Barplots + +Barplots are also useful for visualizing categorical data. By default, +`geom_bar` accepts a variable for x, and plots the number of instances each +value of x (in this case, wall type) appears in the dataset. + + +```r +interviews_plotting %>% + ggplot(aes(x = respondent_wall_type)) + + geom_bar() +``` + +Bar plot showing counts of respondent wall types. + +We can use the `fill` aesthetic for the `geom_bar()` geom to colour bars by +the portion of each count that is from each village. + + +```r +interviews_plotting %>% + ggplot(aes(x = respondent_wall_type)) + + geom_bar(aes(fill = village)) +``` + +Stacked bar plot of wall types showing each village as a different color. + +This creates a stacked bar chart. These are generally more difficult to read +than side-by-side bars. We can separate the portions of the stacked bar that +correspond to each village and put them side-by-side by using the `position` +argument for `geom_bar()` and setting it to "dodge". + + +```r +interviews_plotting %>% + ggplot(aes(x = respondent_wall_type)) + + geom_bar(aes(fill = village), position = "dodge") +``` + +Bar plot of respondent wall types with each village as a separate bar. + +This is a nicer graphic, but we're more likely to be interested in the +proportion of each housing type in each village than in the actual count of +number of houses of each type (because we might have sampled different numbers +of households in each village). To compare proportions, we will first create a +new data frame (`percent_wall_type`) with a new column named "percent" +representing the percent of each house type in each village. We will remove +houses with cement walls, as there was only one in the dataset. + + +```r +percent_wall_type <- interviews_plotting %>% + filter(respondent_wall_type != "cement") %>% + count(village, respondent_wall_type) %>% + group_by(village) %>% + mutate(percent = (n / sum(n)) * 100) %>% + ungroup() +``` + +Now we can use this new data frame to create our plot showing the +percentage of each house type in each village. + + +```r +percent_wall_type %>% + ggplot(aes(x = village, y = percent, fill = respondent_wall_type)) + + geom_bar(stat = "identity", position = "dodge") +``` + +Side by side bar plot showing percent of respondents in each village with each wall type. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Create a bar plot showing the proportion of respondents in each +village who are or are not part of an irrigation association +(`memb_assoc`). Include only respondents who answered that question +in the calculations and plot. Which village had the lowest proportion of +respondents in an irrigation association? + +::::::::::::::: solution + +## Solution + + +```r +percent_memb_assoc <- interviews_plotting %>% + filter(!is.na(memb_assoc)) %>% + count(village, memb_assoc) %>% + group_by(village) %>% + mutate(percent = (n / sum(n)) * 100) %>% + ungroup() + +percent_memb_assoc %>% + ggplot(aes(x = village, y = percent, fill = memb_assoc)) + + geom_bar(stat = "identity", position = "dodge") +``` + +Bar plot showing percent of respondents in each village who were part of association. + +Ruaca had the lowest proportion of members in an irrigation association. + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Adding Labels and Titles + +By default, the axes labels on a plot are determined by the name of the variable +being plotted. However, **`ggplot2`** offers lots of customization options, +like specifying the axes labels, and adding a title to the plot with +relatively few lines of code. We will add more informative x-and y-axis +labels to our plot, a more explanatory label to the legend, and a plot title. + +The `labs` function takes the following arguments: + +- `title` -- to produce a plot title +- `subtitle` -- to produce a plot subtitle (smaller text placed beneath the title) +- `caption` -- a caption for the plot +- `...` -- any pair of name and value for aesthetics used in the plot (e.g., + `x`, `y`, `fill`, `color`, `size`) + + +```r +percent_wall_type %>% + ggplot(aes(x = village, y = percent, fill = respondent_wall_type)) + + geom_bar(stat = "identity", position = "dodge") + + labs(title = "Proportion of wall type by village", + fill = "Type of Wall in Home", + x = "Village", + y = "Percent") +``` + +Previous plot with plot title and labells added. + +## Faceting + +Rather than creating a single plot with side-by-side bars for each +village, we may want to create multiple plot, where each plot shows the +data for a single village. This would be especially useful if we had +a large number of villages that we had sampled, as a large number of +side-by-side bars will become more difficult to read. + +**`ggplot2`** has a special technique called *faceting* that allows the +user to split one plot into multiple plots based on a factor included +in the dataset. We will use it to split our barplot of housing type +proportion by village so that each village has its own panel in a +multi-panel plot: + + +```r +percent_wall_type %>% + ggplot(aes(x = respondent_wall_type, y = percent)) + + geom_bar(stat = "identity", position = "dodge") + + labs(title="Proportion of wall type by village", + x="Wall Type", + y="Percent") + + facet_wrap(~ village) +``` + +Bar plot showing percent of each wall type in each village. + +Click the "Zoom" button in your RStudio plots pane to view a larger +version of this plot. + +Usually plots with white background look more readable when printed. We can set +the background to white using the function `theme_bw()`. Additionally, you can remove +the grid: + + +```r +percent_wall_type %>% + ggplot(aes(x = respondent_wall_type, y = percent)) + + geom_bar(stat = "identity", position = "dodge") + + labs(title="Proportion of wall type by village", + x="Wall Type", + y="Percent") + + facet_wrap(~ village) + + theme_bw() + + theme(panel.grid = element_blank()) +``` + +Bar plot showing percent of each wall type in each village, with black and white theme applied. + +What if we wanted to see the proportion of respondents in each village +who owned a particular item? We can calculate the percent of people +in each village who own each item and then create a faceted series of +bar plots where each plot is a particular item. First we need to +calculate the percentage of people in each village who own each item: + + +```r +percent_items <- interviews_plotting %>% + group_by(village) %>% + summarize(across(bicycle:no_listed_items, ~ sum(.x) / n() * 100)) %>% + pivot_longer(bicycle:no_listed_items, names_to = "items", values_to = "percent") +``` + +To calculate this percentage data frame, we needed to use the `across()` +function within a `summarize()` operation. Unlike the previous example with a +single wall type variable, where each response was exactly one of the types +specified, people can (and do) own more than one item. So there are multiple +columns of data (one for each item), and the percentage calculation needs to be +repeated for each column. + +Combining `summarize()` with `across()` allows us to specify first, the columns +to be summarized (`bicycle:no_listed_items`) and then the calculation. Because +our calculation is a bit more complex than is available in a built-in function, +we define a new formula: + +- `~` indicates that we are defining a formula, +- `sum(.x)` gives the number of people owning that item by counting the number of `TRUE` + values (`.x` is shorthand for the column being operated on), +- and `n()` gives the current group size. + +After the `summarize()` operation, we have a table of percentages with each item +in its own column, so a `pivot_longer()` is required to transform the table into +an easier format for plotting. Using this data frame, we can now create a +multi-paneled bar plot. + + +```r +percent_items %>% + ggplot(aes(x = village, y = percent)) + + geom_bar(stat = "identity", position = "dodge") + + facet_wrap(~ items) + + theme_bw() + + theme(panel.grid = element_blank()) +``` + +Multi-panel bar chart showing percent  of respondents in each village and who owned each item, with no grids behid bars. + +## **`ggplot2`** themes + +In addition to `theme_bw()`, which changes the plot background to white, +**`ggplot2`** comes with several other themes which can be useful to quickly +change the look of your visualization. The complete list of themes is available +at [https://ggplot2.tidyverse.org/reference/ggtheme.html](https://ggplot2.tidyverse.org/reference/ggtheme.html). `theme_minimal()` and +`theme_light()` are popular, and `theme_void()` can be useful as a starting +point to create a new hand-crafted theme. + +The +[ggthemes](https://jrnold.github.io/ggthemes/reference/index.html) +package provides a wide variety of options (including an Excel 2003 theme). The +[**`ggplot2`** extensions website](https://exts.ggplot2.tidyverse.org/) provides a list +of packages that extend the capabilities of **`ggplot2`**, including additional +themes. + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Experiment with at least two different themes. Build the previous plot +using each of those themes. Which do you like best? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Customization + +Take a look at the [**`ggplot2`** cheat +sheet](https://raw.githubusercontent.com/rstudio/cheatsheets/main/data-visualization.pdf), +and think of ways you could improve the plot. + +Now, let's change names of axes to something more informative than 'village' and +'percent' and add a title to the figure: + + +```r +percent_items %>% + ggplot(aes(x = village, y = percent)) + + geom_bar(stat = "identity", position = "dodge") + + facet_wrap(~ items) + + labs(title = "Percent of respondents in each village who owned each item", + x = "Village", + y = "Percent of Respondents") + + theme_bw() +``` + + + +The axes have more informative names, but their readability can be improved by +increasing the font size: + + +```r +percent_items %>% + ggplot(aes(x = village, y = percent)) + + geom_bar(stat = "identity", position = "dodge") + + facet_wrap(~ items) + + labs(title = "Percent of respondents in each village who owned each item", + x = "Village", + y = "Percent of Respondents") + + theme_bw() + + theme(text = element_text(size = 16)) +``` + + + +Note that it is also possible to change the fonts of your plots. If you are on +Windows, you may have to install the [**`extrafont`** +package](https://github.com/wch/extrafont), and follow the instructions included +in the README for this package. + +After our manipulations, you may notice that the values on the x-axis are still +not properly readable. Let's change the orientation of the labels and adjust +them vertically and horizontally so they don't overlap. You can use a 90-degree +angle, or experiment to find the appropriate angle for diagonally oriented +labels. With a larger font, the title also runs off. We can add "\\n" in the string +for the title to insert a new line: + + +```r +percent_items %>% + ggplot(aes(x = village, y = percent)) + + geom_bar(stat = "identity", position = "dodge") + + facet_wrap(~ items) + + labs(title = "Percent of respondents in each village \n who owned each item", + x = "Village", + y = "Percent of Respondents") + + theme_bw() + + theme(axis.text.x = element_text(colour = "grey20", size = 12, angle = 45, + hjust = 0.5, vjust = 0.5), + axis.text.y = element_text(colour = "grey20", size = 12), + text = element_text(size = 16)) +``` + +Multi-panel bar charts showing percent of respondents in each village and who owned each item, with grids behind the bars. + +If you like the changes you created better than the default theme, you can save +them as an object to be able to easily apply them to other plots you may create. +We can also add `plot.title = element_text(hjust = 0.5)` to centre the title: + + +```r +grey_theme <- theme(axis.text.x = element_text(colour = "grey20", size = 12, + angle = 45, hjust = 0.5, + vjust = 0.5), + axis.text.y = element_text(colour = "grey20", size = 12), + text = element_text(size = 16), + plot.title = element_text(hjust = 0.5)) + + +percent_items %>% + ggplot(aes(x = village, y = percent)) + + geom_bar(stat = "identity", position = "dodge") + + facet_wrap(~ items) + + labs(title = "Percent of respondents in each village \n who owned each item", + x = "Village", + y = "Percent of Respondents") + + grey_theme +``` + + + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +With all of this information in hand, please take another five minutes to +either improve one of the plots generated in this exercise or create a +beautiful graph of your own. Use the RStudio [**`ggplot2`** cheat sheet](https://raw.githubusercontent.com/rstudio/cheatsheets/main/data-visualization.pdf) +for inspiration. Here are some ideas: + +- See if you can make the bars white with black outline. +- Try using a different colour palette (see + [http://www.cookbook-r.com/Graphs/Colors\_(ggplot2)/](https://www.cookbook-r.com/Graphs/Colors_\(ggplot2\)/)). + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +After creating your plot, you can save it to a file in your favourite format. The Export tab in the **Plot** pane in RStudio will save your plots at low resolution, which will not be accepted by many journals and will not scale well for posters. + +Instead, use the `ggsave()` function, which allows you to easily change the dimension and resolution of your plot by adjusting the appropriate arguments (`width`, `height` and `dpi`). + +Make sure you have the `fig_output/` folder in your working directory. + + +```r +my_plot <- percent_items %>% + ggplot(aes(x = village, y = percent)) + + geom_bar(stat = "identity", position = "dodge") + + facet_wrap(~ items) + + labs(title = "Percent of respondents in each village \n who owned each item", + x = "Village", + y = "Percent of Respondents") + + theme_bw() + + theme(axis.text.x = element_text(color = "grey20", size = 12, angle = 45, + hjust = 0.5, vjust = 0.5), + axis.text.y = element_text(color = "grey20", size = 12), + text = element_text(size = 16), + plot.title = element_text(hjust = 0.5)) + +ggsave("fig_output/name_of_file.png", my_plot, width = 15, height = 10) +``` + +Note: The parameters `width` and `height` also determine the font size in the saved plot. + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- `ggplot2` is a flexible and useful tool for creating plots in R. +- The data set and coordinate system can be defined using the `ggplot` function. +- Additional layers, including geoms, are added using the `+` operator. +- Boxplots are useful for visualizing the distribution of a continuous variable. +- Barplots are useful for visualizing categorical data. +- Faceting allows you to generate multiple plots based on a categorical variable. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/06-rmarkdown.md b/06-rmarkdown.md new file mode 100644 index 000000000..23bcb05b9 --- /dev/null +++ b/06-rmarkdown.md @@ -0,0 +1,576 @@ +--- +title: Getting started with R Markdown (Optional) +teaching: 30 +exercises: 15 +output: + html_document: + df_print: paged +source: Rmd +--- + + + +::::::::::::::::::::::::::::::::::::::: objectives + +- Create a .Rmd document containing R code, text, and plots +- Create a YAML header to control output +- Understand basic syntax of (R)Markdown +- Customise code chunks to control formatting +- Use code chunks and in-line code to create dynamic, reproducible documents + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What is R Markdown? +- How can I integrate my R code with text and plots? +- How can I convert .Rmd files to .html? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## R Markdown + +R Markdown is a flexible type of document that allows you to seamlessly combine +executable R code, and its output, with text in a single document. These +documents can be readily converted to multiple static and dynamic output +formats, including PDF (.pdf), Word (.docx), and HTML (.html). + +The benefit of a well-prepared R Markdown document is full reproducibility. This +also means that, if you notice a data transcription error, or you are able to +add more data to your analysis, you will be able to recompile the report without +making any changes in the actual document. + +The **rmarkdown** package comes pre-installed with RStudio, so no action is +necessary. + +
+R Markdown wizard monsters creating a R Markdown document from a recipe. Art by Allison Horst +
+Image credit: Allison Horst +
+
+ +## Creating an R Markdown file + +To create a new R Markdown document in RStudio, click File -> New File -> +R Markdown: + +![](fig/new-rmd.png){alt="Screenshot of the New R Markdown file dialogue box in RStudio"} + +Then click on 'Create Empty Document'. Normally you could enter the title of +your document, your name (Author), and select the type of output, but we will be +learning how to start from a blank document. + +## Basic components of R Markdown + +To control the output, a YAML (YAML Ain't Markup Language) header is needed: + +``` +--- +title: "My Awesome Report" +author: "Emmet Brickowski" +date: "" +output: html_document +--- +``` + +The header is defined by the three hyphens at the beginning (`---`) and the +three hyphens at the end (`---`). + +In the YAML, the only required field is the `output:`, which specifies the type +of output you want. This can be an `html_document`, a `pdf_document`, or a +`word_document`. We will start with an HTML doument and discuss the other +options later. + +The rest of the fields can be deleted, if you don't need them. After the header, +to begin the body of the document, you start typing after the end of the YAML +header (i.e. after the second `---`). + +## Markdown syntax + +Markdown is a popular markup language that allows you to add formatting elements +to text, such as **bold**, *italics*, and `code`. The formatting will not be +immediately visible in a markdown (.md) document, like you would see in a Word +document. Rather, you add Markdown syntax to the text, which can then be +converted to various other files that can translate the Markdown syntax. +Markdown is useful because it is lightweight, flexible, and platform +independent. + +Some platforms provide a real time preview of the formatting, like RStudio's +visual markdown editor (available from version 1.4). + +First, let's create a heading! A `#` in front of text indicates to Markdown that +this text is a heading. Adding more `#`s make the heading smaller, i.e. one `#` is +a first level heading, two `##`s is a second level heading, etc. upto the 6th level heading. + +``` +# Title +## Section +### Sub-section +#### Sub-sub section +##### Sub-sub-sub section +###### Sub-sub-sub-sub section +``` + +(only use a level if the one above is also in use) + +Since we have already defined our title in the YAML header, we will use a +section heading to create an Introduction section. + +``` +## Introduction +``` + +You can make things **bold** by surrounding the word with double asterisks, +`**bold**`, or double underscores, `__bold__`; and *italicize* using single +asterisks, `*italics*`, or single underscores, `_italics_`. + +You can also combine **bold** and *italics* to write something ***really*** +important with triple-asterisks, `***really***`, or underscores, `___really___`; +and, if you're feeling bold (pun intended), you can also use a combination of +asterisks and underscores, `**_really_**`, `**_really_**`. + +To create `code-type` font, surround the word with backticks, +`code-type`. + +Now that we've learned a couple of things, it might be useful to implement them: + +``` +## Introduction + +This report uses the **tidyverse** package along with the *SAFI* dataset, +which has columns that include: +``` + +Then we can create a list for the variables using `-`, `+`, or `*` keys. + +``` +## Introduction + +This report uses the **tidyverse** package along with the *SAFI* dataset, +which has columns that include: + +- village +- interview_date +- no_members +- years_liv +- respondent_wall_type +- rooms +``` + +You can also create an ordered list using numbers: + +``` +1. village +2. interview_date +3. no_members +4. years_liv +5. respondent_wall_type +6. rooms +``` + +And nested items by tab-indenting: + +``` +- village + + Name of village +- interview_date + + Date of interview +- no_members + + How many family members lived in a house +- years_liv + + How many years respondent has lived in village or neighbouring village +- respondent_wall_type + + Type of wall of house +- rooms + + Number of rooms in house +``` + +For more Markdown syntax see [the following reference guide](https://www.markdownguide.org/basic-syntax). + +Now we can render the document into HTML by clicking the **Knit** button in the +top of the Source pane (top left), or use the keyboard shortcut +Ctrl\+Shift\+K on Windows and Linux, and +Cmd\+Shift\+K on Mac. If you haven't saved the +document yet, you will be prompted to do so when you **Knit** for the first +time. + +![](fig/rmd-rmd_to_html.png){alt="The 'knitting' process: First, R Markdown is converted to Markdown, which is then converted (via pandoc) to .html, .pdf, .docx, etc."} + +## Writing an R Markdown report + +Now we will add some R code from our previous data wrangling and visualisation, +which means we need to make sure **tidyverse** is loaded. It is not enough to +load **tidyverse** from the console, we will need to load it within our R Markdown +document. The same applies to our data. To load these, we will need to create a +'code chunk' at the top of our document (below the YAML header). + +A code chunk can be inserted by clicking Code > Insert Chunk, or by using the +keyboard shortcuts Ctrl\+Alt\+I on Windows and Linux, +and Cmd\+Option\+I on Mac. + +The syntax of a code chunk is: + + +````markdown +```{r chunk-name} +Here is where you place the R code that you want to run. +``` +```` + +An R Markdown document knows that this text is not part of the report from the +```` ``` ```` that begins and ends the chunk. It also knows that the code +inside of the chunk is R code from the `r` inside of the curly braces (`{}`). +After the `r` you can add a name for the code chunk . Naming a chunk is +optional, but recommended. Each chunk name must be unique, and only contain +alphanumeric characters and `-`. + + + +To load **tidyverse** and our `SAFI_clean.csv` file, we will insert a chunk and +call it 'setup'. Since we don't want this code or the output to show in our +knitted HTML document, we add an `include = FALSE` option after the code chunk +name (`{r setup, include = FALSE}`). + + +````markdown +```{r setup, include = FALSE} +library(tidyverse) +library(here) +interviews <- read_csv(here("data/SAFI_clean.csv"), na = "NULL") +``` +```` +::::::::::::::::::::::::::::::::::::::::: callout + +## Important Note! + +The file paths you give in a .Rmd document, e.g. to load a .csv file, are +relative to the .Rmd document, **not** the project root. + +As suggested in the Starting with Data episode, we highly recommend the use of +the `here()` function to keep the file paths consistent within your project. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Insert table + +Next, we will re-create a table from the Data Wrangling episode which +shows the average household size grouped by `village` and `memb_assoc`. +We can do this by creating a new code chunk and calling it 'interview-tbl'. +Or, you can come up with something more creative (just remember to stick to the +naming rules). + +It isn't necessary to **Knit** your document every time you want to see the +output. Instead you can run the code chunk with the green triangle in the top +right corner of the the chunk, or with the keyboard shortcuts: +Ctrl\+Alt\+C on Windows and Linux, or +Cmd\+Option\+C on Mac. + +To make sure the table is formatted nicely in our output document, we will need +to use the `kable()` function from the **knitr** package. The `kable()` function +takes the output of your R code and knits it into a nice looking HTML table. You +can also specify different aspects of the table, e.g. the column names, a +caption, etc. + +Run the code chunk to make sure you get the desired output. + + +```r +interviews %>% + filter(!is.na(memb_assoc)) %>% + group_by(village, memb_assoc) %>% + summarize(mean_no_membrs = mean(no_membrs)) %>% + knitr::kable(caption = "We can also add a caption.", + col.names = c("Village", "Member Association", + "Mean Number of Members")) +``` + + + +Table: We can also add a caption. + +|Village |Member Association | Mean Number of Members| +|:--------|:------------------|----------------------:| +|Chirodzo |no | 8.062500| +|Chirodzo |yes | 7.818182| +|God |no | 7.133333| +|God |yes | 8.000000| +|Ruaca |no | 7.178571| +|Ruaca |yes | 9.500000| + +Many different R packages can be used to generate tables. Some of the more commonly used options are listed in the table below. + +| Name | Creator(s) | Description | +|---------------|--------------|-------------------------------------------| +| [condformat](https://condformat.sergioller.com/index.html) | [Oller Moreno (2022)](https://cran.rstudio.com/web/packages/condformat/index.html) | Apply and visualize conditional formatting to data frames in R. It renders a data frame with cells formatted according to criteria defined by rules, using a tidy evaluation syntax. | +| [DT](https://rstudio.github.io/DT/) | [Xie et al. (2023)](https://cran.r-project.org/web/packages/DT/index.html) | Data objects in R can be rendered as HTML tables using the JavaScript library 'DataTables' (typically via R Markdown or Shiny). The 'DataTables' library has been included in this R package. | +| [formattable](https://github.com/renkun-ken/formattable) | [Ren and Russell (2021)](https://cran.r-project.org/web/packages/formattable/index.html) | Provides functions to create formattable vectors and data frames. 'Formattable' vectors are printed with text formatting, and formattable data frames are printed with multiple types of formatting in HTML to improve the readability of data presented in tabular form rendered on web pages. | +| [flextable](https://davidgohel.github.io/flextable/) | [Gohel and Skintzos (2023)](https://cran.r-project.org/web/packages/flextable/index.html) | Use a grammar for creating and customizing pretty tables. The following formats are supported: 'HTML', 'PDF', 'RTF', 'Microsoft Word', 'Microsoft PowerPoint' and R 'Grid Graphics'. 'R Markdown', 'Quarto', and the package 'officer' can be used to produce the result files. | +| [gt](https://gt.rstudio.com/) | [Iannone et al. (2022)](https://cloud.r-project.org/web/packages/gt/index.html) | Build display tables from tabular data with an easy-to-use set of functions. With its progressive approach, we can construct display tables with cohesive table parts. Table values can be formatted using any of the included formatting functions. | +| [huxtable](https://hughjonesd.github.io/huxtable/) | [Hugh-Jones (2022)](https://cran.r-project.org/web/packages/huxtable/index.html) | Creates styled tables for data presentation. Export to HTML, LaTeX, RTF, 'Word', 'Excel', and 'PowerPoint'. Simple, modern interface to manipulate borders, size, position, captions, colours, text styles and number formatting.| +| [pander](https://rapporter.github.io/pander/) | [Daróczi and Tsegelskyi (2022)](https://cran.r-project.org/web/packages/pander/index.html) | Contains some functions catching all messages, 'stdout' and other useful information while evaluating R code and other helpers to return user specified text elements (e.g., header, paragraph, table, image, lists etc.) in 'pandoc' markdown or several types of R objects similarly automatically transformed to markdown format. | +| [pixiedust](https://pixiedust.github.io/pixiedust/) | [Nutter and Kretch (2021)](https://cran.rstudio.com/web/packages/pixiedust/index.html) | 'pixiedust' provides tidy data frames with a programming interface intended to be similar to 'ggplot2's system of layers with fine-tuned control over each cell of the table. | +| [reactable](https://glin.github.io/reactable/) | [Lin et al. (2023)](https://cran.r-project.org/web/packages/reactable/index.html) | Interactive data tables for R, based on the 'React Table' JavaScript library. Provides an HTML widget that can be used in 'R Markdown' or 'Quarto' documents, 'Shiny' applications, or viewed from an R console. | +| [rhandsontable](http://jrowen.github.io/rhandsontable/) | [Owen et al. (2021)](https://cran.r-project.org/web/packages/rhandsontable/index.html) | An R interface to the 'Handsontable' JavaScript library, which is a minimalist Excel-like data grid editor. | +| [stargazer](https://github.com/cran/stargazer) | [Hlavac (2022)](https://cran.r-project.org/web/packages/stargazer/index.html) | Produces LaTeX code, HTML/CSS code and ASCII text for well-formatted tables that hold regression analysis results from several models side-by-side, as well as summary statistics. | +| [tables](https://github.com/dmurdoch/tables) | [Murdoch (2022)](https://cran.r-project.org/web/packages/tables/index.html) | Computes and displays complex tables of summary statistics. Output may be in LaTeX, HTML, plain text, or an R matrix for further processing. | +| [tangram](https://github.com/spgarbet/tangram) | [Garbett et al. (2023)](https://cran.r-project.org/web/packages/tangram/index.html) | Provides an extensible formula system to quickly and easily create production quality tables. The processing steps are a formula parser, statistical content generation from data defined by a formula, and rendering into a table. | +| [xtable](https://github.com/cran/xtable) | [Dahl et al. (2019)](https://cran.r-project.org/web/packages/xtable/index.html) | Coerce data to LaTeX and HTML tables. | +| [ztable](https://github.com/cardiomoon/ztable) | [Moon (2021)](https://cran.r-project.org/web/packages/ztable/index.html) | Makes zebra-striped tables (tables with alternating row colors) in LaTeX and HTML formats easily from a data.frame, matrix, lm, aov, anova, glm, coxph, nls, fitdistr, mytable and cbind.mytable objects. | + +## Customising chunk output + +We mentioned using `include = FALSE` in a code chunk to prevent the code and +output from printing in the knitted document. There are additional options +available to customise how the code-chunks are presented in the output document. +The options are entered in the code chunk after `chunk-name`and separated by +commas, e.g. `{r chunk-name, eval = FALSE, echo = TRUE}`. + +| Option | Options | Output | +| ------ | ------- | --------------------------------------------------------------------------------------------------------- | +| `eval` | `TRUE` or `FALSE` | Whether or not the code within the code chunk should be run. | +| `echo` | `TRUE` or `FALSE` | Choose if you want to show your code chunk in the output document. `echo = TRUE` will show the code chunk. | +| `include` | `TRUE` or `FALSE` | Choose if the output of a code chunk should be included in the document. `FALSE` means that your code will run, but will not show up in the document. | +| `warning` | `TRUE` or `FALSE` | Whether or not you want your output document to display potential warning messages produced by your code. | +| `message` | `TRUE` or `FALSE` | Whether or not you want your output document to display potential messages produced by your code. | +| `fig.align` | `default`, `left`, `right`, `center` | Where the figure from your R code chunk should be output on the page | + +::::::::::::::::::::::::::::::::::::::::: callout + +## Tip + +- The default settings for the above chunk options are all `TRUE`. +- The default settings can be modified per chunk, or with + `knitr::opts_chunk$set()`, +- Entering `knitr::opts_chunk$set(echo = FALSE)` will change the default of + value of `echo` to `FALSE` for **every** code chunk in the document. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Play around with the different options in the chunk with the code for the +table, and re-**Knit** to see what each option does to the output. + +What happens if you use `eval = FALSE` and `echo = FALSE`? What is the +difference between this and `include = FALSE`? + +::::::::::::::: solution + +## Solution to Exercise + +Create a chunk with `{r eval = FALSE, echo = FALSE}`, then create another +chunk with `{r include = FALSE}` to compare. +`eval = FALSE` and `echo = FALSE` will neither run the code in the chunk, +nor show the code in the knitted document. The code chunk essentially +doesn't exist in the knitted document as it was never run. Whereas +`include = FALSE` will run the code and store the output for later use. + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## In-line R code + +Now we will use some in-line R code to present some descriptive statistics. +To use in-line R-code, we use the same backticks that we used in the Markdown +section, with an `r` to specify that we are generating R-code. The difference +between in-line code and a code chunk is the number of backticks. In-line R code +uses one backtick (`r`), whereas code chunks use three backticks +(``` r ```). + +For example, today's date is ``` `r Sys.Date()` ```, will be rendered as: +today's date is 2023-07-10. +The code will display today's date in the output document (well, technically the +date the document was last knitted). + +The best way to use in-line R code, is to minimise the amount of code you need +to produce the in-line output by preparing the output in code chunks. Let's say +we're interested in presenting the average household size in a village. + + +```r +# create a summary data frame with the mean household size by village +mean_household <- interviews %>% + group_by(village) %>% + summarize(mean_no_membrs = mean(no_membrs)) + +# and select the village we want to use +mean_chirodzo <- mean_household %>% + filter(village == "Chirodzo") +``` + +Now we can make an informative statement on the means of each village, and include +the mean values as in-line R-code. For example: + +The average household size in the village of Chirodzo is +``` `r round(mean_chirodzo$mean_no_membrs, 2)` ``` + +becomes... + +The average household size in the village of Chirodzo is +7.08. + +Because we are using in-line R code instead of the actual values, we have created +a dynamic document that will automatically update if we make changes to the dataset +and/or code chunks. + +## Plots + +Finally, we will also include a plot, so our document is a little more colourful +and a little less boring. We will use the `interview_plotting` data from the +previous episode. + +If you were unable to complete the previous lesson or did not save the data, +then you can create it in a new code chunk. + + +```r +## Not run, but can be used to load in data from previous lesson! +interviews_plotting <- interviews %>% + ## pivot wider by items_owned + separate_rows(items_owned, sep = ";") %>% + ## if there were no items listed, changing NA to no_listed_items + replace_na(list(items_owned = "no_listed_items")) %>% + mutate(items_owned_logical = TRUE) %>% + pivot_wider(names_from = items_owned, + values_from = items_owned_logical, + values_fill = list(items_owned_logical = FALSE)) %>% + ## pivot wider by months_lack_food + separate_rows(months_lack_food, sep = ";") %>% + mutate(months_lack_food_logical = TRUE) %>% + pivot_wider(names_from = months_lack_food, + values_from = months_lack_food_logical, + values_fill = list(months_lack_food_logical = FALSE)) %>% + ## add some summary columns + mutate(number_months_lack_food = rowSums(select(., Jan:May))) %>% + mutate(number_items = rowSums(select(., bicycle:car))) +``` + +::::::::::::::::::::::::::::::::::::::: challenge + +## Exercise + +Create a new code chunk for the plot, and copy the code from any of the plots +we created in the previous episode to produce a plot in the chunk. I recommend +one of the colourful plots. + +If you are feeling adventurous, you can also create a new plot with the +`interviews_plotting` data frame. + +::::::::::::::: solution + +## Solution to Exercise + + +```r +interviews_plotting %>% + ggplot(aes(x = respondent_wall_type)) + + geom_bar(aes(fill = village)) +``` + + + +::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +We can also create a caption with the chunk option `fig.cap`. + + +````markdown +```{r chunk-name, fig.cap = "I made this plot while attending an +awesome Data Carpentries workshop where I learned a ton of cool stuff!"} +Code for plot +``` +```` + +...or, ideally, something more informative. + + +```r +interviews_plotting %>% + ggplot(aes(x = respondent_wall_type)) + + geom_bar(aes(fill = village), position = "dodge") + + labs(x = "Type of Wall in Home", y = "Count", fill = "Village Name") + + scale_fill_viridis_d() # add colour deficient friendly palette +``` + +
+I made this plot while attending an awesome Data Carpentries workshop where I learned a ton of cool stuff! +

I made this plot while attending an awesome Data Carpentries workshop where I learned a ton of cool stuff!

+
+ +## Other output options + +You can convert R Markdown to a PDF or a Word document (among others). +Click the little triangle next to the **Knit** button to get a drop-down menu. +Or you could put `pdf_document` or `word_document` in the initial header of the file. + +``` +--- +title: "My Awesome Report" +author: "Emmet Brickowski" +date: "" +output: word_document +--- +``` + +::::::::::::::::::::::::::::::::::::::::: callout + +## Note: Creating PDF documents + +Creating .pdf documents may require installation of some extra software. The R +package `tinytex` provides some tools to help make this process easier for R users. +With `tinytex` installed, run `tinytex::install_tinytex()` to install the required +software (you'll only need to do this once) and then when you **Knit** to pdf `tinytex` +will automatically detect and install any additional LaTeX packages that are needed to +produce the pdf document. Visit the [tinytex website](https://yihui.org/tinytex/) +for more information. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +::::::::::::::::::::::::::::::::::::::::: callout + +## Note: Inserting citations into an R Markdown file + +It is possible to insert citations into an R Markdown file using the +editor toolbar. The editor toolbar includes commonly seen formatting +buttons generally seen in text editors (e.g., bold and italic +buttons). The toolbar is accessible by using the settings dropdown +menu (next to the 'Knit' dropdown menu) to select 'Use Visual Editor', +also accessible through the shortcut 'Crtl+Shift+F4'. From here, +clicking 'Insert' allows 'Citation' to be selected (shortcut: +'Crtl+Shift+F8'). For example, searching '10.1007/978-3-319-24277-4' +in 'From DOI' and inserting will provide the citation for `ggplot2` +[@wickham2016]. This will also save the citation(s) in +'references.bib' in the current working directory. Visit the [R Studio +website](https://rstudio.github.io/visual-markdown-editing/) for more +information. Tip: obtaining citation information from relevant +packages can be done by using `citation("package")`. + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## Resources + +- [Knitr in a knutshell tutorial](https://kbroman.org/knitr_knutshell) +- [Dynamic Documents with R and knitr](https://www.amazon.com/exec/obidos/ASIN/1482203537/7210-20) (book) +- [R Markdown documentation](https://rmarkdown.rstudio.com) +- [R Markdown cheat sheet](https://github.com/rstudio/cheatsheets/blob/master/rmarkdown-2.0.pdf) +- [Getting started with R Markdown](https://www.rstudio.com/resources/webinars/getting-started-with-r-markdown/) +- [Markdown tutorial](https://commonmark.org/help/tutorial/) +- [R Markdown: The Definitive Guide](https://bookdown.org/yihui/rmarkdown/) (book by Rstudio team) +- [Reproducible Reporting](https://www.rstudio.com/resources/webinars/reproducible-reporting/) +- [The Ecosystem of R Markdown](https://www.rstudio.com/resources/webinars/the-ecosystem-of-r-markdown/) +- [Introducing Bookdown](https://www.rstudio.com/resources/webinars/introducing-bookdown/) + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- R Markdown is a useful language for creating reproducible documents combining text and executable R-code. +- Specify chunk options to control formatting of the output document + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/07-json.md b/07-json.md new file mode 100644 index 000000000..9bc9fcd84 --- /dev/null +++ b/07-json.md @@ -0,0 +1,335 @@ +--- +title: Processing JSON data (Optional) +teaching: 30 +exercises: 15 +source: Rmd +--- + + + +::::::::::::::::::::::::::::::::::::::: objectives + +- Describe the JSON data format +- Understand where JSON is typically used +- Appreciate some advantages of using JSON over tabular data +- Appreciate some disadvantages of processing JSON documents +- Use the jsonLite package to read a JSON file +- Display formatted JSON as dataframe +- Select and display nested dataframe fields from a JSON document +- Write tabular data from selected elements from a JSON document to a csv file + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::: questions + +- What is JSON format? +- How can I convert JSON to an R dataframe? +- How can I convert an array of JSON record into a table? + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +## The JSON data format + +The JSON data format was designed as a way of allowing different machines or processes within machines to communicate with each other by sending messages constructed in a well defined format. JSON is now the preferred data format used by APIs (Application Programming Interfaces). + +The JSON format although somewhat verbose is not only Human readable but it can also be mapped very easily to an R dataframe. + +We are going to read a file of data formatted as JSON, convert it into a dataframe in R then selectively create a csv file from the extracted data. + +The JSON file we are going to use is the [SAFI.json](data/SAFI.json) file. This is the output file from an electronic survey system called ODK. The JSON represents the answers to a series of survey questions. The questions themselves have been replaced with unique Keys, the values are the answers. + +Because detailed surveys are by nature nested structures making it possible to record different levels of detail or selectively ask a set of specific questions based on the answer given to a previous question, the structure of the answers for the survey can not only be complex and convoluted, it could easily be different from one survey respondent's set of answers to another. + +### Advantages of JSON + +- Very popular data format for APIs (e.g. results from an Internet search) +- Human readable +- Each record (or document as they are called) is self contained. The equivalent of the column name and column values are in every record. +- Documents do not all have to have the same structure within the same file +- Document structures can be complex and nested + +### Disadvantages of JSON + +- It is more verbose than the equivalent data in csv format +- Can be more difficult to process and display than csv formatted data + +## Use the JSON package to read a JSON file + + +```r +library(jsonlite) +``` + +As with reading in a CSV, you have a couple of options for how to access the JSON file. + +You can read the JSON file directly into R with `read_json()` or the comparable `fromJSON()` +function, though this does not download the file. + + +```r +json_data <- read_json( + "https://raw.githubusercontent.com/datacarpentry/r-socialsci/main/episodes/data/SAFI.json" + ) +``` + +To download the file you can copy and paste the contents of the file on +[GitHub](https://github.com/datacarpentry/r-socialsci/blob/main/episodes/data/SAFI.json), +creating a `SAFI.json` file in your `data` directory, or you can download the file with R. + + +```r +download.file( + "https://raw.githubusercontent.com/datacarpentry/r-socialsci/main/episodes/data/SAFI.json", + "data/SAFI.json", mode = "wb") +``` + +Once you have the data downloaded, you can read it into R with `read_json()`: + + +```r +json_data <- read_json("data/SAFI.json") +``` + +We can see that a new object called json\_data has appeared in our Environment. It is described as a Large list (131 elements). In this current form, our data is messy. You can have a glimpse of it with the `head()` or `view()` functions. It will look not much more structured than if you were to open the JSON file with a text editor. + +This is because, by default, the `read_json()` function's parameter `simplifyVector`, which specifies whether or not to simplify vectors is set to FALSE. This means that the default setting does not simplify nested lists into vectors and data frames. However, we can set this to TRUE, and our data will be read directly as a dataframe: + + +```r +json_data <- read_json("data/SAFI.json", simplifyVector = TRUE) +``` + +Now we can see we have this json data in a dataframe format. For consistency with the rest of +the lesson, let's coerce it to be a tibble and use `glimpse` to take a peek +inside (these functions were loaded by `library(tidyverse)`): + + +```r +json_data <- json_data %>% as_tibble() +glimpse(json_data) +``` + +```{.output} +Rows: 131 +Columns: 74 +$ C06_rooms 1, 1, 1, 1, 1, 1, 1, 3, 1, 5, 1, 3, 1, … +$ B19_grand_liv "no", "yes", "no", "no", "yes", "no", "… +$ A08_ward "ward2", "ward2", "ward2", "ward2", "wa… +$ E01_water_use "no", "yes", "no", "no", "no", "no", "y… +$ B18_sp_parents_liv "yes", "yes", "no", "no", "no", "no", "… +$ B16_years_liv 4, 9, 15, 6, 40, 3, 38, 70, 6, 23, 20, … +$ E_yes_group_count NA, "3", NA, NA, NA, NA, "4", "2", "3",… +$ F_liv [], [ NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +$ instanceID "uuid:ec241f2c-0609-46ed-b5e8-fe575f6ce… +$ B20_sp_grand_liv "yes", "yes", "no", "no", "no", "no", "… +$ F10_liv_owned_other NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +$ `_note1` NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +$ F12_poultry "yes", "yes", "yes", "yes", "yes", "no"… +$ D_plots_count "2", "3", "1", "3", "2", "1", "4", "2",… +$ C02_respondent_wall_type_other NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +$ C02_respondent_wall_type "muddaub", "muddaub", "burntbricks", "b… +$ C05_buildings_in_compound 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 2, 2, 1, … +$ `_remitters` [], [ , <"Aug", "Sept">, , NA, "Alimentação e pagamento de educa… +$ G01_no_meals 2, 2, 2, 2, 2, 2, 3, 2, 3, 3, 2, 3, 2, … +$ E17_no_enough_water NA, "yes", NA, NA, NA, NA, "yes", "yes"… +$ F04_need_money NA, "no", NA, NA, NA, NA, "no", "no", "… +$ A05_end "2017-04-02T17:29:08.000Z", "2017-04-02… +$ C04_window_type "no", "no", "yes", "no", "no", "no", "n… +$ E21_other_meth NA, "no", NA, NA, NA, NA, "no", "no", "… +$ D_no_plots 2, 3, 1, 3, 2, 1, 4, 2, 3, 2, 2, 2, 4, … +$ F05_money_source , , , , … +$ A07_district "district1", "district1", "district1", … +$ C03_respondent_floor_type "earth", "earth", "cement", "earth", "e… +$ E_yes_group [], [ "2016-11-17", "2016-11-17", "2016-11-17… +$ B11_remittance_money "no", "no", "no", "no", "no", "no", "no… +$ A04_start "2017-03-23T09:49:57.000Z", "2017-04-02… +$ D_plots [], [ [], [ "1", "3", "1", "2", "4", "1", "1", "2",… +$ F10_liv_owned "poultry", <"oxen", "cows", "goats">, … +$ B_no_membrs 3, 7, 10, 7, 7, 3, 6, 12, 8, 12, 6, 7, … +$ F13_du_look_aftr_cows "no", "no", "no", "no", "no", "no", "no… +$ E26_affect_conflicts NA, "once", NA, NA, NA, NA, "never", "n… +$ F14_items_owned <"bicycle", "television", "solar_panel… +$ F06_crops_contr NA, "more_half", NA, NA, NA, NA, "more_… +$ B17_parents_liv "no", "yes", "no", "no", "yes", "no", "… +$ G02_months_lack_food "Jan", <"Jan", "Sept", "Oct", "Nov", "… +$ A11_years_farm 11, 2, 40, 6, 18, 3, 20, 16, 16, 22, 6,… +$ F09_du_labour "no", "no", "yes", "yes", "no", "yes", … +$ E_no_group_count "2", NA, "1", "3", "2", "1", NA, NA, NA… +$ E22_res_change , , , , … +$ E24_resp_assoc NA, "no", NA, NA, NA, NA, NA, "yes", NA… +$ A03_quest_no "01", "01", "03", "04", "05", "6", "7",… +$ `_members` [], [ "province1", "province1", "province1", … +$ `gps:Accuracy` 14, 19, 13, 5, 10, 12, 11, 9, 11, 14, 1… +$ E20_exper_other NA, "yes", NA, NA, NA, NA, "yes", "yes"… +$ A09_village "village2", "village2", "village2", "vi… +$ C01_respondent_roof_type "grass", "grass", "mabatisloping", "mab… +$ `gps:Altitude` 698, 690, 674, 679, 689, 692, 709, 700,… +$ `gps:Longitude` 33.48346, 33.48342, 33.48345, 33.48342,… +$ E23_memb_assoc NA, "yes", NA, NA, NA, NA, "no", "yes",… +$ E19_period_use NA, 2, NA, NA, NA, NA, 10, 10, 6, 22, N… +$ E25_fees_water NA, "no", NA, NA, NA, NA, "no", "no", "… +$ C07_other_buildings "no", "no", "no", "no", "no", "no", "ye… +$ observation "None", "Estes primeiros inquéritos na… +$ `_note` NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +$ A12_agr_assoc "no", "yes", "no", "no", "no", "no", "n… +$ G03_no_food_mitigation <"na", "rely_less_food", "reduce_meals… +$ F05_money_source_other NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +$ `gps:Latitude` -19.11226, -19.11248, -19.11211, -19.11… +$ E_no_group [], [ NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,… +$ F08_emply_lab "no", "yes", "no", "no", "no", "no", "n… +$ `_members_count` "3", "7", "10", "7", "7", "3", "6", "12… +``` + +Looking good, but you might notice that actually we have a variable, *F\_liv* that is a list of dataframes! It is very important to know what you are expecting from your data to be able to look for things like this. For example, if you are getting your JSON from an API, have a look at the API documentation, so you know what to look for. + +Often when we have a very large number of columns, it can become difficult to determine all the variables which may require some special attention, like lists. Fortunately, we can use special verbs like `where` to quickly select all the list columns. + + +```r +json_data %>% + select(where(is.list)) %>% + glimpse() +``` + +```{.output} +Rows: 131 +Columns: 14 +$ F_liv [], [], … +$ `_remitters` [], [], … +$ E18_months_no_water , <"Aug", "Sept">, , , , , , , , … +$ E_yes_group [], [],… +$ D_plots [], [], … +$ F_items [], [], … +$ F10_liv_owned "poultry", <"oxen", "cows", "goats">, "none", … +$ F14_items_owned <"bicycle", "television", "solar_panel", "tabl… +$ G02_months_lack_food "Jan", <"Jan", "Sept", "Oct", "Nov", "Dec">, <… +$ E22_res_change , , , , , … +$ `_members` [], []… +$ G03_no_food_mitigation <"na", "rely_less_food", "reduce_meals", "day_… +$ E_no_group [], [], … +``` + +So what can we do about *F\_liv*, the column of dataframes? Well first things first, we can access each one. For example to access the dataframe in the first row, we can use the bracket (`[`) subsetting. Here we use single bracket, but you could also use double bracket (`[[`). The `[[` form allows only a single element to be selected using integer or character indices, whereas `[` allows indexing by vectors. + + +```r +json_data$F_liv[1] +``` + +```{.output} +[[1]] + F11_no_owned F_curr_liv +1 1 poultry +``` + +We can also choose to view the nested dataframes at all the rows of our main dataframe where a particular condition is met (for example where the value for the variable *C06\_rooms* is equal to 4): + + +```r +json_data$F_liv[which(json_data$C06_rooms == 4)] +``` + +```{.output} +[[1]] + F11_no_owned F_curr_liv +1 3 oxen +2 2 cows +3 5 goats + +[[2]] + F11_no_owned F_curr_liv +1 4 oxen +2 5 cows +3 3 goats + +[[3]] +data frame with 0 columns and 0 rows + +[[4]] + F11_no_owned F_curr_liv +1 4 oxen +2 4 cows +3 4 goats +4 1 sheep + +[[5]] + F11_no_owned F_curr_liv +1 2 cows +``` + +## Write the JSON file to csv + +If we try to write our json\_data dataframe to a csv as we would usually in a regular dataframe, we won't get the desired result. Using the `write_csv` function from the `{readr}` package won't give you an error for list columns, but you'll only see missing (i.e. `NA`) values in these columns. Let's try it out to confirm: + + +```r +write_csv(json_data, "json_data_with_list_columns.csv") +read_csv("json_data_with_list_columns.csv") +``` + +To write out as a csv while maintaining the data within the list columns, we will need to "flatten" these columns. One way to do this is to convert these list columns into character types. (However, we don't want to change the data types for any of the other columns). Here's one way to do this using tidyverse. This command only applies the `as.character` command to those columns 'where' `is.list` is `TRUE`. + + +```r +flattened_json_data <- json_data %>% + mutate(across(where(is.list), as.character)) +flattened_json_data +``` + +```{.output} +# A tibble: 131 × 74 + C06_rooms B19_grand_liv A08_ward E01_water_use B18_sp_parents_liv + + 1 1 no ward2 no yes + 2 1 yes ward2 yes yes + 3 1 no ward2 no no + 4 1 no ward2 no no + 5 1 yes ward2 no no + 6 1 no ward2 no no + 7 1 yes ward2 yes no + 8 3 yes ward1 yes yes + 9 1 yes ward2 yes no +10 5 no ward2 yes no +# ℹ 121 more rows +# ℹ 69 more variables: B16_years_liv , E_yes_group_count , +# F_liv , `_note2` , instanceID , B20_sp_grand_liv , +# F10_liv_owned_other , `_note1` , F12_poultry , +# D_plots_count , C02_respondent_wall_type_other , +# C02_respondent_wall_type , C05_buildings_in_compound , +# `_remitters` , E18_months_no_water , F07_use_income , … +``` + +Now you can write this to a csv file: + + +```r +write_csv(flattened_json_data, "data_output/json_data_with_flattened_list_columns.csv") +``` + +Note: this means that when you read this csv back into R, the column of the nested dataframes will now be read in as a character vector. Converting it back to list to extract elements might be complicated, so it is probably better to keep storing these data in a JSON format if you will have to do this. + +You can also write out the individual nested dataframes to a csv. For example: + + +```r +write_csv(json_data$F_liv[[1]], "data_output/F_liv_row1.csv") +``` + +:::::::::::::::::::::::::::::::::::::::: keypoints + +- JSON is a popular data format for transferring data used by a great many Web based APIs +- The complex structure of a JSON document means that it cannot easily be 'flattened' into tabular data +- We can use R code to extract values of interest and place them in a csv file + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 000000000..f19b80495 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,13 @@ +--- +title: "Contributor Code of Conduct" +--- + +As contributors and maintainers of this project, +we pledge to follow the [The Carpentries Code of Conduct][coc]. + +Instances of abusive, harassing, or otherwise unacceptable behavior +may be reported by following our [reporting guidelines][coc-reporting]. + + +[coc-reporting]: https://docs.carpentries.org/topic_folders/policies/incident-reporting.html +[coc]: https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 000000000..b6f5f2ce1 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,82 @@ +--- +title: "Licenses" +--- + +## Instructional Material + +All Software Carpentry, Data Carpentry, and Library Carpentry instructional material is +made available under the [Creative Commons Attribution +license][cc-by-human]. The following is a human-readable summary of +(and not a substitute for) the [full legal text of the CC BY 4.0 +license][cc-by-legal]. + +You are free: + +* to **Share**---copy and redistribute the material in any medium or format +* to **Adapt**---remix, transform, and build upon the material + +for any purpose, even commercially. + +The licensor cannot revoke these freedoms as long as you follow the +license terms. + +Under the following terms: + +* **Attribution**---You must give appropriate credit (mentioning that + your work is derived from work that is Copyright © Software + Carpentry and, where practical, linking to + http://software-carpentry.org/), provide a [link to the + license][cc-by-human], and indicate if changes were made. You may do + so in any reasonable manner, but not in any way that suggests the + licensor endorses you or your use. + +**No additional restrictions**---You may not apply legal terms or +technological measures that legally restrict others from doing +anything the license permits. With the understanding that: + +Notices: + +* You do not have to comply with the license for elements of the + material in the public domain or where your use is permitted by an + applicable exception or limitation. +* No warranties are given. The license may not give you all of the + permissions necessary for your intended use. For example, other + rights such as publicity, privacy, or moral rights may limit how you + use the material. + +## Software + +Except where otherwise noted, the example programs and other software +provided by Software Carpentry and Data Carpentry are made available under the +[OSI][osi]-approved +[MIT license][mit-license]. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +## Trademark + +"Software Carpentry" and "Data Carpentry" and their respective logos +are registered trademarks of [Community Initiatives][ci]. + +[cc-by-human]: https://creativecommons.org/licenses/by/4.0/ +[cc-by-legal]: https://creativecommons.org/licenses/by/4.0/legalcode +[mit-license]: https://opensource.org/licenses/mit-license.html +[ci]: http://communityin.org/ +[osi]: https://opensource.org diff --git a/R-handout.md b/R-handout.md new file mode 100644 index 000000000..308f74161 --- /dev/null +++ b/R-handout.md @@ -0,0 +1,1006 @@ +--- +title: Code Handout - R for Social Scientists +output: + html_document: + df_print: paged + code_download: yes +--- + + + +This document contains all of the core functions that were covered in the R for Social Scientists workshop. +Each function is presented alongside an example of +how it can be used. It is split into the following 4 sections: + +- Introduction to R + +- Starting with Data + +- Data Wrangling + +- Data Visualization + +Each section has instructions to load all necessary libraries or data, so you can start from any of the 4 points linked above. + +## Introduction to R + +The first section covers core programming concepts and functions in Base R and does not require any data or libraries to be loaded. + +### Creating Objects + +- `<-` -- "assignment arrow", assigns a value (vector, dataframe, single value) to the name of a variable + + +```r +x <- 3 +``` + +- `c()` -- the "concatenate" function combines inputs to form a vector, the + values have to be the same data type. + + +```r +animals <- c("bird", "cat", "dog") +numbers <- c(1, 14, 57, 89) +logicals <- c(TRUE, FALSE, TRUE, TRUE) +``` +- `+` -- addition and other mathematical operators can be repeated on every value + in a vector. + + +```r +y <- c(1, 2, 3) +z <- x + y +``` + +### Inspecting Objects + +- `str()` -- compact display of the structure of an R object + + +```r +str(animals) +``` + +- `class()` -- returns the type of element of any R object + + +```r +class(logicals) +``` + +- `typeof()` -- returns the data type or storage mode of any R object + + +```r +typeof(numbers) +``` + +### Functions in R + +- `args()` -- returns the arguments of a function + + +```r +args(round) +``` + +- named arguments -- the name of the argument the function expects + - You can choose to not name your arguments, **if** you know the **exact** + order they should be in! + - However, we generally discourage this. + +- `round()` -- round a decimal or fraction to a specified number of digits + + +```r +# Either of these work, since the digits argument is named explicitly. +round(3.14159, digits = 2) +round(digits = 2, 3.14159) + +# This does not work, since the arguments are not named and in the incorrect order. +round(2, 3.14159) +``` + +### Functions to Summarize Data + +- `sqrt()` -- returns the square root of a numeric variable + + +```r +sqrt(numbers) +``` + +- `mean()` -- returns the mean of a numeric variable + - You can add the `na.rm` argument, to remove `NA` values before calculating + the mean. + + +```r +mean(numbers) +``` + +- `max()` -- returns the maximum of a numeric variable + - You can add the `na.rm` argument, to remove `NA` values before calculating + the max. + + +```r +max(numbers) +``` + +- `sum()` -- returns the sum of a numeric variable + - You can add the `na.rm` argument, to remove `NA` values before calculating + the sum. + + +```r +sum(numbers) +``` + +- `length()` -- returns the length of a vector (of any datatype) + + +```r +length(animals) +``` + +- Additional summary functions include: + - `var()` -- find the variance of a numerical variable + - `sd()` -- finds the standard deviation of a numerical variable + - `IQR()` -- find the innerquartile range (Q3 - Q1) of a numerical variable + - `median()` -- finds the median of a numerical variable + +### Subsetting Data + +- `[]` -- used to subset elements from a vector + +- `X:Y` -- used to retrieve a "slice" of a vector starting at X and continuing through Y + + +```r +animals[3] +# selects the third element + +animals[2:3] +# selects the second and third element + +animals[c(1, 3)] +# selects the first and third element +``` + +- relational operators -- return logical values indicating where a relation is + satisfied. The most commonly used logical operators for data analysis are as follows: + - `==` means "equal to" + - `!=` means "not equal to" + - `>` or `<` means "greater than" or "less than" + - `>=` or `<=` means "greater than or equal to" or "less than or equal to" + + +```r +animals == "dog" + +animals != "cat" + +numbers > 4 + +numbers <= 12 +``` + +- logical operators -- join subset criteria together + - `&` means "and" -- where two criteria must **both** be satisfied + - `|` means "or" -- where at least one criteria must be satisfied + + +```r +numbers > 4 & numbers < 20 + +animals == "dog" | animals == "cat" +``` + +- `%in%` -- the "inclusion operator", allows you to test if any of the elements + of a search vector (on the left hand side) are found in the target vector (on + the right hand side). + - The levels of the target vector must be included in a vector (`c()`). + + +```r +possessions <- c("car", "bicycle", "radio", "television", "mobile_phone") + +possessions %in% c("car", "bicycle", "motorcycle") +``` + +### Missing Data + +- `is.na()` -- returns a vector of logical values indicating which elements of + a vector have `NA` values + - Often combined with `!`, where the `!` negates the previous statement (e.g. + `!TRUE` is equal to `FALSE`). + + +```r +missing <- c(1, 3, NA, 7, 12, NA) + +is.na(missing) + +!is.na(missing) +``` + +- `na.omit()` -- removes the observations with `NA` values + + +```r +na.omit(missing) +``` + +- `complete.cases()` -- returns a vector of logical values indicating which + elements of a vector **are not** missing (`NA`) values + + +```r +complete.cases(missing) +``` + +## Starting with Data + +In this section, we begin working with data. +All data examples are in the context of the Palmer Penguins, found +[here (link)](https://allisonhorst.github.io/palmerpenguins/index.html). + +### Packages + +Packages (also called libraries) expand the capabilities of R beyond the functions that come when you install it. Each needs to be downloaded and installed only once but loaded into each R session. + +- `install.packages()` -- install a new package + +- `library()` -- loads packages into your `R` session + + +```r +# Install packages (not run) +# Delete `#` from lines below if missing packages +#install.packages("tidyverse") +#install.packages("lubridate") +#install.packages("palmerpenguins") + +# Load libraries +library(tidyverse) +library(lubridate) +library(palmerpenguins) #load Palmer Penguins data as `penguins` +``` + +### Inspecting Data + +- `dim()` - returns a vector with the number of rows as the first element, + and the number of columns as the second element (the **dim**ensions of + the object) + + +```r +dim(penguins) +``` + +- `nrow()` - returns the number of rows +- `ncol()` - returns the number of columns + + +```r +nrow(penguins) +ncol(penguins) +``` + +- `head()` - displays the first 6 rows of the dataframe +- `tail()` - displays the last 6 rows of the dataframe + + +```r +head(penguins) +tail(penguins) +``` + +- `names()` - returns the all of the names of an object (both row and column) +- `colnames()` - returns column names for dataframes (without row names) + + +```r +names(penguins) +colnames(penguins) +``` + +- `glimpse()` - provides a preview of the data, where column names are presented + with their associated data types, and the entries from each column are printed + in each row + + +```r +glimpse(penguins) +``` + +- `str()` - returns the structure of the object and information about the class, + the names and data types of each column, and a preview of the first entries of + each column + + +```r +str(penguins) +``` + +- `summary()` - provides summary statistics for each column + - Note: summary statistics for character variables are not meaningful, as they + simply state the number of observations (length) of the variable + + +```r +summary(penguins) +``` + +### Subsetting Data in Dataframes + +- `[]` -- selects rows and columns from a dataframe + - The first entry is the row number, the second entry is the column number(s), + and they are separated with a comma. + + +```r +# Selects the element in the first row, second column +penguins[1, 2] + +# Selects every element in the fourth row +penguins[4, ] + +# Selects every element in the third column +penguins[, 3] +``` + +- `[[]]` -- selects a column from a dataframe + - Inside the brackets you can pass either the number of the column or the + name of the column (in quotations) + + +```r +penguins[[1]] + +penguins[["island"]] +``` + +- `$` -- selects a column from a dataframe, where the name of the dataframe is + on the left and the name of the column is on the right + + +```r +penguins$body_mass_g +``` + +### Working with Different Data Types + +- `factor()` -- creates a categorical variable from a character or numeric + variable, variable has a factor datatype + - the values (level) of the factor levels is specified in the `levels` + argument, where the levels must be specified in a vector (using `c()`) + - Note: the order you wish for the levels to appear is how you should list + them in the `levels` argument, you can also specify `ordered = TRUE` to + ensure the levels remain in this order + + +```r +penguins$year_fct <- factor(penguins$year, + levels = c("2007", "2008", "2009"), + ordered = TRUE) +``` + +- `as.factor()` -- creates a categorical variable from a character or numeric + variable, variable has a factor datatype + - does not allow for you to specify the order of the levels + - defaults to alphabetical ordering for factor levels + + +```r +penguins$year_fct <- as.factor(penguins$year) +``` + +- `levels()` -- returns the levels of a factor variable in the + order they were stored + - Note: this function will not work for character variables + + +```r +levels(penguins$year_fct) +``` + +- `nlevels()` -- returns the number of levels of a factor variable + - Note: this function will not work for character variables + + +```r +nlevels(penguins$year_fct) +``` + +- `as.character()` -- creates a character variable from a numeric or factor + variable + + +```r +penguins$species_chr <- as.character(penguins$species) +``` + +- `ymd()` -- transforms dates stored as character or numeric variables to dates + - Note: to use this function, dates must be stored in year-month-day format + - The function does well with heterogeneous formats (as seen below), but + formats where some of the entries are not in double digits may not be parsed + correctly. + + +```r +x <- c("2009-01-01", "2009-01-02", "2009-01-03") +ymd(x) +``` + +- `day()` -- extracts the day (number) of a date variable + + +```r +day(x) +``` + +- `month()` -- extracts the month (number) of a date variable + + +```r +month(x) +``` + +- `year()` -- extracts the year of a date variable + + +```r +year(x) +``` + +### Basic Data Visualization (see Data Visualization section for more) + +- `plot()` -- a generic function for plotting R objects + - In this lesson `plot()` was used to create bargraphs of categorical + variables. + + +```r +plot(penguins$species) +``` + +## Data Wrangling + +This section continues using the [Palmer Penguins data](https://allisonhorst.github.io/palmerpenguins/index.html) and introduces concepts and functions to explore, clean and summarize data, many of which come from the `dplyr` and `plyr` tidyverse libraries. + +### Packages + +- `library()` -- loads packages into your `R` session + + +```r +library(tidyverse) +library(palmerpenguins) +``` + +### Inspecting Data + +- `glimpse()` -- shows a summary of the dataset, the number of rows and columns, + variable names, and the first 10 entries of each variable + + +```r +glimpse(penguins) +``` + +### Verbs of Data Wrangling + +- `%>%` -- the "pipe" operator, joins sequences of data wrangling steps together, + works with any function that has `data = ` as the first argument +- `select()` -- selects variables (columns) from a dataframe + + +```r +penguins %>% + select(species) +``` + +- `filter()` -- filters observations (rows) out of / into a dataframe, where + the inputs (arguments) are the conditions to be satisfied in the data that are + kept + +**Logical operators:** Filtering for certain observations (e.g. flights from a +particular airport) is often of interest in data frames where we might want to +examine observations with certain characteristics separately from the rest of +the data. To do so, you can use the `filter` function and a series of **logical +operators**. The most commonly used logical operators for data analysis are as +follows: + +- `==` means "equal to" + +- `!=` means "not equal to" + +- `>` or `<` means "greater than" or "less than" + +- `>=` or `<=` means "greater than or equal to" or "less than or equal to" + + +```r +# It's nice to have a new line for each condition, so your code is easier to read! +penguins %>% +filter(species == "Adelie", + body_mass_g > 3000, + year == 2008) +``` + +- `mutate()` -- creates new variables or modifies existing variables + + +```r +penguins %>% + filter(is.na(bill_length_mm) != TRUE, + is.na(bill_depth_mm) != TRUE) %>% + mutate(body_mass_kg = body_mass_g / 1000) +``` + +- `group_by()` -- groups the dataframe based on levels of a categorical variable, + usually used alongside `summarize()` + + +```r +penguins %>% + group_by(island) +``` + +- summarize()`-- creates data summaries of variables in a dataframe, for grouped summaries use alongside`group\_by()\` + + +```r +penguins %>% + filter(is.na(body_mass_g) != TRUE) %>% + group_by(island) %>% + summarize(mean_mass = mean(body_mass_g)) +``` + +- `ungroup()` -- removes the grouping of a dataframe, typically used after group + summaries when additional ungrouped operations are required + + +```r +penguins %>% + filter(is.na(body_mass_g) != TRUE) %>% + group_by(island) %>% + summarize(mean_mass = mean(body_mass_g)) %>% + ungroup() +``` + +- `arrange()` -- orders a dataframe based on the values of a numerical variable, + paired with `desc()` to order in descending order + + +```r +penguins %>% + filter(is.na(body_mass_g) != TRUE) %>% + group_by(island) %>% + summarize(mean_mass = mean(body_mass_g)) %>% + arrange(desc(mean_mass)) +``` + +Chain multiple operations together with `%>%` to create specific outputs without extra steps or dataframes being created along the way. + + +```r +penguins %>% + select(species, island, body_mass_g, sex, year) %>% + filter(island == "Torgersen", + is.na(body_mass_g) != TRUE) %>% + group_by(species, year) %>% + summarize(mean_mass = mean(body_mass_g), + median_mass = median(body_mass_g), + observations = n()) %>% + arrange(desc(mean_mass)) +``` + +### Other Data Wrangling Tools + +- `count()` -- counts the number of observations (rows) of the different levels + of a categorical variable + - can add `sort = TRUE` to sort the table in descending order (similar to + using `arrange(desc())` ) + + +```r +penguins %>% + count(species) +``` + +- `sample_n()` -- selects $n$ rows from the dataframe, based on the value of + `size` specified + + +```r +penguins %>% + sample_n(size = 10) +``` + +- `replace_na()` -- replaces NA values with the value specified + - The values to be replaced must be passed to the function (input) as a + `list()` object. + + +```r +penguins %>% + replace_na(list(bill_length_mm = "no_measurement", + bill_depth_mm = "no_measurement")) %>% + glimpse() +``` + +- `separate_rows()` -- separates a variable with multiple values based on the + delimiter specified. + + - Variables whose entries are stored as a list with commas or semicolons are + great candidates for this function! + +- `rowSums()` -- forms row sums for numeric variables + + - Note: In the lesson `rowSums()` was used on a `logical` variable, because + logical values can be numerically represented as 0 (FALSE) and 1 (TRUE) + + +```r +x <- tibble(x1 = 3, x2 = c(4:1, 2:5)) +rowSums(x) +``` + +### Pivoting Dataframes + +- `pivot_wider()` -- transforms a dataframe from long to wide format + - takes three principal arguments: + 1. the *data* (often passed by a `%>%`) + 2. the *names\_from* column variable whose values will become new column names + 3. the *values\_from* column variable whose values will fill the new column + variables. + - Further arguments include `values_fill` which, if set, fills in missing + values with the value provided. + + +```r +wide <- penguins %>% + mutate(island_logical = TRUE) %>% + pivot_wider(names_from = species, + values_from = island_logical, + values_fill = list(island_logical = FALSE)) + +glimpse(wide) +``` + +- `pivot_longer()` -- transforms a dataframe from wide to long format + - takes four principal arguments: + 1. the data + 2. *cols* are the names of the columns we use to fill the a new values variable + (or to drop). + 3. the *names\_to* column variable we wish to create from the *cols* provided. + 4. the *values\_to* column variable we wish to create and fill with values + associated with the *cols* provided. + + +```r +wide %>% + pivot_longer(cols = Adelie:Gentoo, + names_to = "species", + values_to = "island_logical") +``` + +### Extracting Data + +- `write_csv()` -- writes a dataframe to a csv file, output into the file path + specified + + +```r +write_csv(wide, path = "data/penguins_wide.csv") +``` + +### Importing Data + +- `read_csv()` -- function to import a csv file. + - First argument is the path to the data, passed as a character + (inside quotations). + - You can specify what values should be considered missing, using the `na` + argument. + + +```r +penguins_wide <- read_csv("data/penguins_wide.csv") +``` + +## Data Visualization with ggplot2 + +This section continues using the [Palmer Penguins data](https://allisonhorst.github.io/palmerpenguins/index.html) to introduce key features of the ggplot2 package for visualizing data +and provide examples combining data wrangling and visualization. + +### Packages + + +```r +library(tidyverse) +library(palmerpenguins) +``` + +### Foundations of `ggplot()` + +- `ggplot()` -- a function to create the shell of a visualization, where + specific variables are mapped to different aspects of the plot + +- `aes()` -- aesthetics that can be used when creating a `ggplot()`, where the + aesthetics can either be hard coded (e.g. `color = "blue"`) or associated with + a variable (e.g. `color = sex`). + + - The following are the aesthetic options for *most* plots: + - `x` -- variable to use for x axis + - `y` -- variable to use for y axis + - `alpha` -- changes transparency + - `color` -- produces colored outline + - `fill` -- fills with color + - `group` -- used with categorical variables, similar to color + + +```r +#nothing should appear on this plot except the axes and labels +penguins %>% + ggplot(aes(x = bill_length_mm, y = bill_depth_mm, color = species)) +``` + +- **`+`** -- an important aspect creating a `ggplot()` is to note that the + `geom_XXX()` function is separated from the `ggplot()` function with a plus + sign, `+`. + + - `ggplot()` plots are constructed in series of layers, where the plus sign + separates these layers. + - Generally, the `+` sign can be thought of as the end of a line, so you + should always hit enter/return after it. While it is not mandatory to move + to the next line for each layer, doing so makes the code a lot easier to + organize and read. + +- `geom_point()` -- adds a scatter plot; see full explanation later in list + + +```r +penguins %>% + ggplot(aes(x = bill_length_mm, y = bill_depth_mm, color = species)) + + geom_point() +``` + +### Geometric Objects to Visualize the Data + +- `geom_histogram()` -- adds a histogram to the plot, + where the observations are binned into ranges of values and then frequencies + of observations are plotted on the y-axis + - You can specify the number of bins you want with the `bins` argument + + +```r +penguins %>% + ggplot(aes(x = bill_length_mm)) + + geom_histogram(bins = 20) +``` + +- `geom_boxplot()` -- adds a boxplot to the plot, where observations are + aggregated (summarized), the min, Q1, median, Q3, and maximum are plotted as the + box and whiskers, and "outliers" are plotted as points. + - You can plot a vertical boxplot by specifying the `x` variable, or a + horizontal boxplot by specifying the `y` variable. + - Note: the min and max may not be included in the whiskers, if they are + deemed to be "outliers" based on the $1.5 \\times \\text{IQR}$ rule. + + +```r +# Horizontal boxplot +penguins %>% + ggplot(aes(x = bill_length_mm)) + + geom_boxplot() + +# Vertical boxplot +penguins %>% + ggplot(aes(y = bill_length_mm)) + + geom_boxplot() +``` + +- `geom_density()` -- adds a density curve to the plot, where the probability + density is plotted on the y-axis (so the density curve has a total area of one). + - By default this creates a density curve without shading. By specifying a + color in the `fill` argument, the density curve is shaded. + - Can be thought of as the "one group" violin plot (see below) + + +```r +penguins %>% + ggplot(aes(x = bill_length_mm)) + + geom_density(fill = "tomato") +``` + +- `geom_violin()` -- plots violins for each level of a categorical variable + - Can be thought of as a hybrid mix of `geom_boxplot()` and `geom_density()`, + as the density is displayed, but it is reflected to provide a plot similar in + nature to a boxplot. + - To obtain violins stacked vertically, declare the categorical variable as `y`. + To obtain side-by-side violins, declare the categorical variable as `x`. + + +```r +# Stacked vertically +penguins %>% + ggplot(aes(x = bill_length_mm, y = species)) + + geom_violin() + +# Side-by-side +penguins %>% + ggplot(aes(y = bill_length_mm, x = species)) + + geom_violin() +``` + +- `geom_bar()` -- creates a barchart of a categorical variable + - Can produce stacked barcharts by specifying a variable as the `fill` + aesthetic. + - Can change from stacked barchart to a side-by-side barchart by specifying + `position = "dodge"`. + - If your data are already in counts (e.g. output from `count()`), then you + can specify the `stat = "identity"` argument inside `geom_bar()`. + + +```r +# Stacked barchart +penguins %>% + ggplot(aes(x = species)) + + geom_bar(aes(fill = sex)) + +# Side-by-side barchart +penguins %>% + ggplot(aes(x = species)) + + geom_bar(aes(fill = sex), + position = "dodge") + +# If data are raw counts +penguins %>% + count(species, sex) %>% + ggplot(aes(x = species, y = n)) + + geom_bar(aes(fill = sex), + stat = "identity", + position = "dodge") +``` + +- `geom_point()` -- plots each observation as an (x, y) point, used to create + scatterplots + - Can use `alpha` to increase the transparency of the points, to reduce + overplotting. + - Can specify `aes`thetics inside of `geom_point()` for local aesthetics (point + level) or inside of `ggplot()` for global aesthetics (plot level) + + +```r +penguins %>% + ggplot(aes(x = bill_length_mm, y = bill_depth_mm)) + + geom_point(aes(color = species)) +``` + +- `geom_jitter()` -- plots each observation as an (x, y) point and adds a small + amount of jitter around the point + - Useful so that we can see each point in the locations where there are + overlapping points. + - Can specify the `width` and `height` of the jittering using the optional + arguments. + + +```r +penguins %>% + ggplot(aes(y = body_mass_g, x = species)) + + geom_violin() + + geom_jitter(aes(color = sex), width = 0.25, height = 0.25) +``` + +- `geom_smooth()` -- plots a line over a set of points, draws the readers eye + to a specific trend + - The methods we will use are "lm" for a linear model (straight line), and + "loess" for a wiggly line + - By default, the smoother gives you gray SE bars, to remove these add + `se = FALSE` + + +```r +penguins %>% + ggplot(aes(x = bill_length_mm, y = bill_depth_mm, color = species)) + + geom_point() + + geom_smooth(method = "lm") +``` + +- `facet_wrap()` -- creates subplots of your original plot, based on the levels + of the variable you input + - To facet by one variable, use `~variable`. + - To facet by two variables, use `variable1 ~ variable2`. + - If you prefer for your facets to be organized in rows or columns, use the + `nrow` and/or `ncol` arguments. + + +```r +penguins %>% + ggplot(aes(x = bill_length_mm, y = bill_depth_mm, color = species)) + + geom_point() + + geom_smooth(method = "lm") + + facet_wrap(~island, nrow = 1) +``` + +### Plot Characteristics + +- `labs()` -- specifies the plot labels, possible labels are: x, y, color, fill, + title, and subtitle + + +```r +penguins %>% + ggplot(aes(x = bill_length_mm, y = bill_depth_mm, color = species)) + + geom_point() + + geom_smooth(method = "lm") + + labs(x = "Bill Length (mm)", + y = "Bill Depth (mm)", + color = "Penguin Species") +``` + +- `theme_bw()` -- changes the plotting background to the classic dark-on-light + ggplot2 theme. + - This theme may work better for presentations displayed with a projector. + - Other common themes are `theme_minimal()`, `theme_light()`, and `theme_void()`. + + +```r +penguins %>% + ggplot(aes(x = bill_length_mm, y = bill_depth_mm, color = species)) + + geom_point() + + geom_smooth(method = "lm") + + labs(x = "Bill Length (mm)", + y = "Bill Depth (mm)", + color = "Penguin Species") + + theme_bw() +``` + +- `theme()` -- adjust individual theme elements + - Possible options are: + - `panel.grid` -- controls the grid lines (`panel.grid = element_blank()` + removes grid lines) + - `text` -- specifies font size for the entire plot (e.g. + `text = element_text(size = 16)` + - `axis.text.x` -- specifies the font size for the x-axis text + - `axis.text.y` -- specifies the font size for the y-axis text + - `plot.title` -- specifies aspects of the plot title, can use + `plot.title = element_text(hjust = 0.5)` to centre the title + + +```r +penguins %>% + ggplot(aes(x = bill_length_mm, y = bill_depth_mm, color = species)) + + geom_point() + + geom_smooth(method = "lm") + + labs(x = "Bill Length (mm)", + y = "Bill Depth (mm)", + color = "Penguin Species") + + theme_bw() + + theme(axis.text.x = element_text(size = 12), + axis.text.y = element_text(size = 12)) +``` + +### Exporting Plots + +- `ggsave()` -- convenient function for saving a plot + - Unless specified, defaults to the last plot that was made. + - Uses the size of the current graphics device to determine the size of the + plot. + + +```r +plot1 <- penguins %>% + ggplot(aes(x = bill_length_mm, y = bill_depth_mm, color = species)) + + geom_point() + + geom_smooth(method = "lm") + + facet_wrap(~island, nrow = 1) + +ggsave(path = "images/faceted_plot.png", plot = plot1) +``` + + diff --git a/config.yaml b/config.yaml new file mode 100644 index 000000000..6e8f5d053 --- /dev/null +++ b/config.yaml @@ -0,0 +1,88 @@ +#------------------------------------------------------------ +# Values for this lesson. +#------------------------------------------------------------ + +# Which carpentry is this (swc, dc, lc, or cp)? +# swc: Software Carpentry +# dc: Data Carpentry +# lc: Library Carpentry +# cp: Carpentries (to use for instructor training for instance) +# incubator: The Carpentries Incubator +carpentry: 'dc' + +# Overall title for pages. +title: 'R for Social Scientists' + +# Date the lesson was created (YYYY-MM-DD, this is empty by default) +created: '2017-05-25' + +# Comma-separated list of keywords for the lesson +keywords: 'software, data, lesson, The Carpentries' + +# Life cycle stage of the lesson +# possible values: pre-alpha, alpha, beta, stable +life_cycle: 'stable' + +# License of the lesson +license: 'CC-BY 4.0' + +# Link to the source repository for this lesson +source: 'https://github.com/datacarpentry/r-socialsci/' + +# Default branch of your lesson +branch: 'main' + +# Who to contact if there are any issues +contact: 'team@carpentries.org' + +# Navigation ------------------------------------------------ +# +# Use the following menu items to specify the order of +# individual pages in each dropdown section. Leave blank to +# include all pages in the folder. +# +# Example ------------- +# +# episodes: +# - introduction.md +# - first-steps.md +# +# learners: +# - setup.md +# +# instructors: +# - instructor-notes.md +# +# profiles: +# - one-learner.md +# - another-learner.md + +# Order of episodes in your lesson +episodes: +- 00-intro.Rmd +- 01-intro-to-r.Rmd +- 02-starting-with-data.Rmd +- 03-dplyr.Rmd +- 04-tidyr.Rmd +- 05-ggplot2.Rmd +- 06-rmarkdown.Rmd +- 07-json.Rmd + +# Information for Learners +learners: +- reference.md +- R-handout.Rmd + +# Information for Instructors +instructors: + +# Learner Profiles +profiles: + +# Customisation --------------------------------------------- +# +# This space below is where custom yaml items (e.g. pinning +# sandpaper and varnish versions) should live + + +url: 'https://datacarpentry.org/r-socialsci' diff --git a/data/SAFI.json b/data/SAFI.json new file mode 100644 index 000000000..94ac7f21c --- /dev/null +++ b/data/SAFI.json @@ -0,0 +1 @@ +[{"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 4, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:ec241f2c-0609-46ed-b5e8-fe575f6cefef", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-02T17:29:08.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-03-23T09:49:57.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 4.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 360.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Iniciou um neg\u00c3\u00b3cio", "F03_year": 2011, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comorou radio", "F03_year": 2012, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou uma Biscleta", "F03_year": 2012, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["poultry"], "B_no_membrs": 3, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "television", "solar_panel", "table"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Jan"], "A11_years_farm": 11.0, "F09_du_labour": "no", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "01", "_members": [{"B06_memb_education": "sec_3", "B05_memb_age": 27, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 19, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 14.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 698.0, "gps:Longitude": 33.48345609, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "None", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na", "rely_less_food", "reduce_meals", "day_night_hungry"], "F05_money_source_other": null, "gps:Latitude": -19.11225943, "E_no_group": [{"E04_res_water_field": "no_need", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "no_need", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "3"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 9, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 4, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 4, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:099de9c9-3e5e-427b-8452-26250e840d6e", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Aug", "Sept"], "F07_use_income": "Alimenta\u00c3\u00a7\u00c3\u00a3o e pagamento de educa\u00c3\u00a7\u00c3\u00a3o dos filhos", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-02T17:26:19.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": 1000.0, "E15_duration": "month", "E07_bring": "yes", "E14_access": "rented", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": 1000.0, "E15_duration": "month", "E07_bring": "yes", "E14_access": "rented", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 3}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-02T09:48:16.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 80.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 400.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 180.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 1800.0, "D17_cost_seed": null, "D12_harvst_amount": 180.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 12.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1200.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 120.0, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1.8}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Compra da Machamba", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou Talh\u00c3\u00a3o", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "once", "F14_items_owned": ["cow_cart", "bicycle", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Sept", "Oct", "Nov", "Dec"], "A11_years_farm": 2.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "01", "_members": [{"B06_memb_education": "sec_1", "B05_memb_age": 22, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 47, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "na", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "na", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "na", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 19.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 690.0, "gps:Longitude": 33.48341568, "E23_memb_assoc": "yes", "E19_period_use": 2.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Estes primeiros inqu\u00c3\u00a9ritos nao tinhamos GPS introduzias is dados o tablet depois de preenchimento e tirava as cordenadas.", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na", "reduce_meals", "restrict_adults", "borrow_food", "seek_government"], "F05_money_source_other": null, "gps:Latitude": -19.11247712, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 15, "E_yes_group_count": null, "F_liv": [], "_note2": null, "instanceID": "uuid:193d7daf-9582-409b-bf09-027dd36f9007", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-02T17:26:53.000Z", "C04_window_type": "yes", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-02T14:35:26.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Educa\u00c3\u00a7\u00c3\u00a3o dos filhos", "F03_year": 2016, "F02_source_income": "Trabalho sazonal"}, {"F01_item": "Constru\u00c3\u00a7\u00c3\u00a3o de habita\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2007, "F02_source_income": "Trabalho sazonal"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["solar_torch"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Feb", "Mar", "Oct", "Nov", "Dec"], "A11_years_farm": 40.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "03", "_members": [{"B06_memb_education": "none", "B05_memb_age": 70, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 13.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 674.0, "gps:Longitude": 33.48344998, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto Geogr\u00c3\u00a1fico \nLatitude: 18\u00c2\u00b054'4527324S\nLongetude: 33\u00c2\u00b06'373207E\nAltitude: 704m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na", "restrict_adults", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.1121076, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "10"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 6, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 4, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:148d1105-778a-4755-aa71-281eadd4a973", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-02T17:27:16.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-02T14:55:18.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 4.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["sorghum"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Radio", "F03_year": 2016, "F02_source_income": "Trabalho sazonal"}, {"F01_item": "O sistema solar", "F03_year": 2016, "F02_source_income": "Trabalho sazonal"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "radio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Sept", "Oct", "Nov", "Dec"], "A11_years_farm": 6.0, "F09_du_labour": "yes", "E_no_group_count": "3", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "04", "_members": [{"B06_memb_education": "none", "B05_memb_age": 50, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "parent", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 28, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 679.0, "gps:Longitude": 33.48342395, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Esta o 2nd lan\u00c3\u00a7amento de questionario. As cordenadas geogr\u00c3\u00a1ficas foram lan\u00c3\u00a7ados no pr\u00c3\u00b3prio dia no tablet e n\u00c3\u00a3o foram registados no papel.", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na", "reduce_meals", "restrict_adults", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11222901, "E_no_group": [{"E04_res_water_field": "no_need", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "no_need", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 2}, {"E04_res_water_field": "no_need", "E03_crops": ["sorghum"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 3}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 40, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 4, "F_curr_liv": "cows"}, {"F11_no_owned": 2, "F_curr_liv": "goats"}, {"F11_no_owned": 13, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:2c867811-9696-4966-9866-f35c3e97d02d", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-02T17:27:35.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-02T15:10:35.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 4.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "poultry"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["motorcyle", "radio", "cow_plough", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Aug", "Sept", "Oct", "Nov"], "A11_years_farm": 18.0, "F09_du_labour": "no", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "05", "_members": [{"B06_memb_education": "none", "B05_memb_age": 57, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 28, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 24, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 689.0, "gps:Longitude": 33.48342524, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Esta \u00c3\u00a9 a 2a vez que o mesmo question\u00c3\u00a1rio esta sendo carregado no ODK, por isso que n\u00c3\u00a3o traz as cordenadas geogr\u00c3\u00a1ficas.", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na", "go_forest", "migrate"], "F05_money_source_other": null, "gps:Latitude": -19.11221722, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 3, "E_yes_group_count": null, "F_liv": [], "_note2": null, "instanceID": "uuid:daa56c91-c8e3-44c3-a663-af6a49a2ca70", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-02T17:28:02.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-02T15:27:25.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 3, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": null, "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Aug", "Sept", "Oct"], "A11_years_farm": 3.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "6", "_members": [{"B06_memb_education": "pri_1", "B05_memb_age": 33, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 12.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 692.0, "gps:Longitude": 33.48339187, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "N\u00c3\u00a3o existe cordenadas geogr\u00c3\u00a1ficas visto que lan\u00c3\u00a7ou se no tablet depois de ter terminado a entrevista, e os inquiridores nao traziam ainda os GPS's.", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["borrow_food", "lab_ex_food", "seek_government"], "F05_money_source_other": null, "gps:Latitude": -19.1121959, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "3"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 38, "E_yes_group_count": "4", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}], "_note2": null, "instanceID": "uuid:ae20a58d-56f4-43d7-bafa-e7963d850844", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "4", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct"], "F07_use_income": "Alimenta\u00c3\u00a7\u00c3\u00a3o", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-02T17:28:19.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 4, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["beans"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}, {"E12_apply_water": "furrows", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 4}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-02T15:38:01.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 50.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 47.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 800.0, "D12_harvst_amount": 47.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["own_manure"], "D14_cost_fert": null}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": 1200.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.5, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["own_manure"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 4, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["child"], "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 35.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 200.0, "D12_harvst_amount": 35.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["own_manure"], "D14_cost_fert": null}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Constru\u00c3\u00a7\u00c3\u00a3o de habita\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Compra de cabe\u00c3\u00a7as de gado bovino", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["oxen"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["motorcyle", "cow_plough"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Nov"], "A11_years_farm": 20.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "7", "_members": [{"B06_memb_education": "pri_1", "B05_memb_age": 38, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 709.0, "gps:Longitude": 33.48336498, "E23_memb_assoc": "no", "E19_period_use": 10.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "N\u00c3\u00a3o temos as cordenadas geogr\u00c3\u00a1ficas porque haviamos feito direitamente no ODK, no tablet.", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11221904, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "6"}, {"C06_rooms": 3, "B19_grand_liv": "yes", "A08_ward": "ward1", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 70, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 8, "F_curr_liv": "oxen"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:d6cee930-7be1-4fd9-88c0-82a08f90fb5a", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-02T17:28:39.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-02T15:59:52.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 750.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Compra de cabe\u00c3\u00a7as de gado bovino", "F03_year": 2000, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Compra de motorizada", "F03_year": 2010, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Compra de bicicleta", "F03_year": 2010, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou de sistema solar", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Compra de televisor", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Compra de congelador", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Compra de chapas para cobertura da casa", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "goats"], "B_no_membrs": 12, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "fridge"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan"], "A11_years_farm": 16.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "yes", "A03_quest_no": "08", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 70, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 43, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 27, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 700.0, "gps:Longitude": 33.48341914, "E23_memb_assoc": "yes", "E19_period_use": 10.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\nLatitude: 0512935\nLongetude: 7906703\nAltitude: 730.3m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "restrict_adults", "borrow_food"], "F05_money_source_other": null, "gps:Latitude": -19.11215963, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "12"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 6, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 9, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:846103d2-b1db-4055-b502-9cd510bb7b37", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Oct", "Nov"], "F07_use_income": "1", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-02T16:42:08.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-02T16:23:36.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 350.0, "D19_pesticide": "required_buyer", "D07_ploughing_typ": "ox", "D24_amnt_sold": 67.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 750.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 300.0, "D17_cost_seed": null, "D12_harvst_amount": 67.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1750.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "required_buyer", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 17.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 750.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 300.0, "D17_cost_seed": null, "D12_harvst_amount": 17.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1750.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Compra de cabe\u00c3\u00a7as de gado bovino", "F03_year": 2008, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Compra de aparelhagem sonora", "F03_year": 2009, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["television", "solar_panel", "solar_torch"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Dec"], "A11_years_farm": 16.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "9", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 39, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 32, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 701.0, "gps:Longitude": 33.48343695, "E23_memb_assoc": "no", "E19_period_use": 6.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \nLatitude: 0512721\nLongetude: 7906327\nAltitude: 740.5m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "limit_portion", "restrict_adults", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11221518, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "8"}, {"C06_rooms": 5, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 23, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:8f4e49bc-da81-4356-ae34-e0d794a23721", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios e material escolar para os filhos", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-02T17:25:11.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["parent"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2016-12-16", "B11_remittance_money": "no", "A04_start": "2017-04-02T17:03:28.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 11.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["parent"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 700.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 24.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 750.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 250.0, "D17_cost_seed": null, "D12_harvst_amount": 24.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1400.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou motorizada", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou televisor", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2002, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou charua", "F03_year": 2002, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu habita\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2012, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 12, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_cart", "motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_panel", "solar_torch", "table"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Oct", "Nov", "Dec"], "A11_years_farm": 22.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "10", "_members": [{"B06_memb_education": "none", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 42, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 13, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 29, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 14.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 710.0, "gps:Longitude": 33.48339436, "E23_memb_assoc": "no", "E19_period_use": 22.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \nLatitude: 0512972\nLongetude: 7906053\nAltitude: 723.1m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_portion", "restrict_adults", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.1122147, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "12"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 20, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:d29b44e3-3348-4afc-aa4d-9eb34c89d483", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-03T03:31:10.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T03:16:15.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Oct", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Oct", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["radio", "cow_plough"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov"], "A11_years_farm": 6.0, "F09_du_labour": "yes", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "11", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 26, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["salar_job"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm", "salar_job"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 707.0, "gps:Longitude": 33.48345933, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "A entrevistada estava receiosa ao passar as informa\u00c3\u00a7\u00c3\u00b5es, parecia como estivesse com d\u00c3\u00bavidas em rela\u00c3\u00a7\u00c3\u00a3o as quest\u00c3\u00b5es colocadas. \n\nEstq e a segunda vez que este question\u00c3\u00a1rio esta sendo lan\u00c3\u00a7ado no ODK portando as coordenadas desta entrevista foram lan\u00c3\u00a7adas no", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11219126, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "6"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 20, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:e6ee6269-b467-4e37-91fc-5e9eaf934557", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [{"B13_remitter_location_village": "Sussundenga", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "manica", "B14_remitter_location_district": "Sussundenga", "B12_remittance_money_type": "Pastor"}], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-03T03:58:34.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "spouse", "child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2016-11-21", "B11_remittance_money": "yes", "A04_start": "2017-04-03T03:31:13.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 3.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [], "D_curr_crop": "maize", "D_repeat_times_count": "0", "D05_times": 0}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 700.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 760.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 1.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 2600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2010, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou charua, trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2012, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu a sua moradia", "F03_year": 2008, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_cart", "bicycle", "radio", "cow_plough", "table"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Sept", "Oct"], "A11_years_farm": 20.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "12", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 74, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 84, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 41, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 13.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 696.0, "gps:Longitude": 33.48341504, "E23_memb_assoc": "yes", "E19_period_use": 20.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "As cordenadas desta senhora foram lan\u00c3\u00a7adas no ODK no primeiro lan\u00c3\u00a7amento em Novembro e nao se registou no papel.", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11229465, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 8, "E_yes_group_count": "4", "F_liv": [{"F11_no_owned": 6, "F_curr_liv": "cows"}, {"F11_no_owned": 4, "F_curr_liv": "goats"}, {"F11_no_owned": 10, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:6c00c145-ee3b-409c-8c02-2c8d743b6918", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "4", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Oct"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios e material escolar para os filhos", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-03T04:19:36.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 4, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "basin", "E08_crops": ["beans"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "bucket", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "basin", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "bucket", "E10_water_source": "river", "E06_plot_no": 3}, {"E12_apply_water": "basin", "E08_crops": ["onion"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "bucket", "E10_water_source": "river", "E06_plot_no": 4}], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T03:58:43.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 12.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 12.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 400.0, "D12_harvst_amount": 3.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 0.3, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 50.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.3, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 16.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 16.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["onion"], "D01_curr_plot": 4, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.3, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 150.0, "D12_harvst_amount": 4.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "onion", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou charua, trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2012, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado caprino", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu a sua moradia", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["cows", "goats", "poultry"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["bicycle", "radio", "cow_plough", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Sept", "Oct", "Nov"], "A11_years_farm": 7.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "13", "_members": [{"B06_memb_education": "sec_1", "B05_memb_age": 49, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 45, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 15.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 706.0, "gps:Longitude": 33.48355635, "E23_memb_assoc": "no", "E19_period_use": 7.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "As cordenadas geogr\u00c3\u00a1ficas desta morada, n\u00c3\u00a3o se encontra registada no papel, foi tirada directamente com o tablet no local depois da entrevista.", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11236935, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "6"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 20, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 1, "F_curr_liv": "cows"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:9b21467f-1116-4340-a3b1-1ab64f13c87d", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-03T04:50:05.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T04:19:57.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 15.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou bicicleta", "F03_year": 2008, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "radio", "cow_plough", "solar_panel", "table", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["June", "July", "Aug", "Sept", "Oct", "Nov"], "A11_years_farm": 20.0, "F09_du_labour": "yes", "E_no_group_count": "3", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "14", "_members": [{"B06_memb_education": "sec_2", "B05_memb_age": 31, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "artisan"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 25, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 73, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 68, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 698.0, "gps:Longitude": 33.4834388, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "As cordenadas geogr\u00c3\u00a1ficas foram registados pelo ODK em Novembro e nao se lancou no papel.", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["reduce_meals", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11222089, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 2}, {"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 3}], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "10"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 30, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 7, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:a837e545-ff86-4a1c-a1a5-6186804b985f", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios e produtos de higiene", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-03T05:28:44.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["beans"], "E09_irr_manager": ["du_head", "spouse", "child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": 500.0, "E15_duration": "year", "E07_bring": "yes", "E14_access": "rented", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["ngogwe"], "E09_irr_manager": ["du_head", "spouse", "child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": 500.0, "E15_duration": "year", "E07_bring": "yes", "E14_access": "rented", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T05:12:17.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 15.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 6.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 7.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 0.5, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 760.0, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["ngogwe"], "D01_curr_plot": 3, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse", "child"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 0.5, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 130.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 65.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 760.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 65.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "ngogwe", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu a sua moradia", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou radio", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou bicicleta", "F03_year": 2010, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "once", "F14_items_owned": ["bicycle", "radio", "cow_plough", "solar_panel", "table"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Feb", "Mar", "Apr", "May", "June", "July", "Aug", "Sept", "Oct", "Nov"], "A11_years_farm": 30.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "15", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 59, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 49, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 715.0, "gps:Longitude": 33.48339657, "E23_memb_assoc": "yes", "E19_period_use": 30.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Como asemelhanca dos outros question\u00c3\u00a1rios as cordenadas geogr\u00c3\u00a1ficas deste nao foram registadas no papel.", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na", "rely_less_food", "limit_portion", "reduce_meals", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.1120793, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 47, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 6, "F_curr_liv": "cows"}, {"F11_no_owned": 7, "F_curr_liv": "goats"}, {"F11_no_owned": 8, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:d17db52f-4b87-4768-b534-ea8f9704c565", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-03T05:40:53.000Z", "C04_window_type": "yes", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-24", "B11_remittance_money": "no", "A04_start": "2017-04-03T05:29:24.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 3.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 3.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "poultry"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["radio", "cow_plough", "solar_panel", "solar_torch"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Feb"], "A11_years_farm": 24.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "16", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 47, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "salar_job"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 40, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Trabalhadora", "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 709.0, "gps:Longitude": 33.48344397, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "yes", "observation": "A semelhan\u00c3\u00a7a dos outros question\u00c3\u00a1rios este tbem nao foi registado o ponto geogr\u00c3\u00a1fico desta fam\u00c3\u00adlia.", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11210678, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "6"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 20, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:4707f3dc-df18-4348-9c2c-eec651e89b6b", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-03T05:57:57.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T05:41:42.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 200.0, "D12_harvst_amount": 2.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 2, "D02_total_plot": 0.3, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 0.3, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 50.0, "D12_harvst_amount": 1.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["other"], "D01_curr_plot": 3, "D02_total_plot": 0.3, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": "Inhame", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.3, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": 90.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 4.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado caprino", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado caprino", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["goats"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "yes", "E26_affect_conflicts": null, "F14_items_owned": ["mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Nov", "Dec"], "A11_years_farm": 10.0, "F09_du_labour": "yes", "E_no_group_count": "3", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "17", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["artisan"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 13, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 710.0, "gps:Longitude": 33.48346325, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "A semelhan\u00c3\u00a7a dos outros question\u00c3\u00a1rios este tamb\u00c3\u00a9m n\u00c3\u00a3o tem pontos geogr\u00c3\u00a1fico.", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11218314, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "field_wet", "E03_crops": ["vegetable"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 2}, {"E04_res_water_field": "field_wet", "E03_crops": ["holoco"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 3}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "8"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 20, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 5, "F_curr_liv": "goats"}, {"F11_no_owned": 2, "F_curr_liv": "pigs"}, {"F11_no_owned": 1, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:7ffe7bd1-a15c-420c-a137-e1f006c317a3", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-03T12:39:48.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T12:27:04.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 200.0, "D12_harvst_amount": 1.5, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["pigeonpeas"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 0.3, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 40.0, "D12_harvst_amount": 1.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "pigeonpeas", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou um casal de porcos", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["goats", "pigs", "poultry"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov"], "A11_years_farm": 6.0, "F09_du_labour": "yes", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "18", "_members": [{"B06_memb_education": "none", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 17.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 685.0, "gps:Longitude": 33.47630848, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "A semelhan\u00c3\u00a7a dos outros question\u00c3\u00a1rios as cordenadas geogr\u00c3\u00a1ficas deste tamb\u00c3\u00a9m nao foram registadas no papel.", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["reduce_meals", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11133515, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["pigeonpeas"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "4"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 23, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 5, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:e32f2dc0-0d05-42fb-8e21-605757ddf07d", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-03T12:53:29.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T12:40:14.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 4.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Pagar despesas na educa\u00c3\u00a7\u00c3\u00a3o dos filhos", "F03_year": 2012, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Compra de produtos aliment\u00c3\u00adcios", "F03_year": 2012, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "goats"], "B_no_membrs": 9, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "radio", "cow_plough", "solar_panel", "solar_torch", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov", "Dec"], "A11_years_farm": 20.0, "F09_du_labour": "yes", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "19", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 35, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 32, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 30.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 716.0, "gps:Longitude": 33.47640837, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "yes", "observation": "A semelhan\u00c3\u00a7a dos outros question\u00c3\u00a1rios este tamb\u00c3\u00a9m n\u00c3\u00a3o foi registado o ponto geogr\u00c3\u00a1fico desta fam\u00c3\u00adlia.", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_portion", "lab_ex_food", "seek_government"], "F05_money_source_other": null, "gps:Latitude": -19.11142642, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["beans"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "9"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 1, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 5, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:d1005274-bf52-4e79-8380-3350dd7c2bac", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-03T14:20:04.000Z", "C04_window_type": "yes", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T14:04:50.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Mar", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "yes", "D21_cost_labour": 500.0, "D17_cost_seed": 125.0, "D12_harvst_amount": 12.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 0.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": 400.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 300.0, "D17_cost_seed": null, "D12_harvst_amount": 4.0, "D16_imprv_seed": "no", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Compra de cabe\u00c3\u00a7as de gado bovino", "F03_year": 1999, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["cows"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "yes", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "cow_plough", "solar_torch"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov"], "A11_years_farm": 24.0, "F09_du_labour": "yes", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "20", "_members": [{"B06_memb_education": "pri_3", "B05_memb_age": 60, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 46, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 27.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 700.0, "gps:Longitude": 33.47619213, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "A semelhan\u00c3\u00a7a dos outros question\u00c3\u00a1rios este tamb\u00c3\u00a9m n\u00c3\u00a3o foi registado no papel a localiza\u00c3\u00a7\u00c3\u00a3o geogr\u00c3\u00a1fica.", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11147317, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["beans"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "6"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 20, "E_yes_group_count": "4", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 1, "F_curr_liv": "cows"}, {"F11_no_owned": 3, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:6570a7d0-6a0b-452c-aa2e-922500e35749", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "4", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Oct"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-03T14:44:39.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 4, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "basin", "E08_crops": ["vegetable"], "E09_irr_manager": ["parent"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "bucket", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "basin", "E08_crops": ["tomatoes"], "E09_irr_manager": ["parent"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "bucket", "E10_water_source": "river", "E06_plot_no": 3}, {"E12_apply_water": "basin", "E08_crops": ["cabbage"], "E09_irr_manager": ["parent"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "bucket", "E10_water_source": "river", "E06_plot_no": 4}], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T14:24:58.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.3, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 250.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 4.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.3, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 1500.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 20.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["cabbage"], "D01_curr_plot": 4, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.3, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 300.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 15.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 915.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "cabbage", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou aves", "F03_year": 2007, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou enxadas", "F03_year": 2000, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": null, "F06_crops_contr": "less_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Feb", "Mar", "Oct", "Nov", "Dec"], "A11_years_farm": 20.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "21", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 40, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 20.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 707.0, "gps:Longitude": 33.47623134, "E23_memb_assoc": "no", "E19_period_use": 20.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "A semelhan\u00c3\u00a7a dos outros question\u00c3\u00a1rios este tamb\u00c3\u00a9m n\u00c3\u00a3o foi registado no papel as cordenadas geogr\u00c3\u00a1ficas.", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "restrict_adults", "day_night_hungry", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11155014, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "8"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 20, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:a51c3006-8847-46ff-9d4e-d29919b8ecf9", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-03T16:40:47.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T16:28:52.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou Radio", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["goats"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["radio"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Feb", "Mar", "Apr", "Aug", "Sept", "Oct", "Nov", "Dec"], "A11_years_farm": 14.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "22", "_members": [{"B06_memb_education": "pri_3", "B05_memb_age": 27, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 23, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 722.0, "gps:Longitude": 33.48350764, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "A semelhan\u00c3\u00a7a dos outros question\u00c3\u00a1rios as cordenadas geogr\u00c3\u00a1ficas deste tamb\u00c3\u00a9m n\u00c3\u00a3o foram registado no papel.", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "reduce_meals", "go_forest", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11212691, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "4"}, {"C06_rooms": 4, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 20, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:58b37b6d-d6cd-4414-8790-b9c68bca98de", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-03T17:04:28.000Z", "C04_window_type": "yes", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T16:41:04.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 10.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["child"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 10.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 2000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 15.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 10400.0, "D12_harvst_amount": 24.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["own_manure"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["amendoim"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "July", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 11.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["own_manure"], "D14_cost_fert": null}], "D_curr_crop": "amendoim", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu a sua habita\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2006, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["cow_cart", "bicycle", "television", "radio", "cow_plough", "solar_panel", "electricity", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["none"], "A11_years_farm": 12.0, "F09_du_labour": "no", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "23", "_members": [{"B06_memb_education": "sec_2", "B05_memb_age": 62, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 48, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 27, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 25, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 23, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "university", "B05_memb_age": 21, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 19, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_4", "B05_memb_age": 17, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": null, "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 699.0, "gps:Longitude": 33.4833833, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "yes", "observation": "Pontos Geogr\u00c3\u00a1fico \nLatitude: 0512789\nLongetude: 7910848\nAltitude: 709m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11219352, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["peanut"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "10"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 4, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 4, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:661457d3-7e61-45e8-a238-7415e7548f82", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-03T17:43:01.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["peanut"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-03T17:19:49.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 28800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 23.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1800.0, "D12_harvst_amount": 23.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 120.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 45.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 850.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 200.0, "D17_cost_seed": 1400.0, "D12_harvst_amount": 45.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}, {"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 0.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 0.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["peanut"], "D01_curr_plot": 3, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Jan", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 875.0, "D12_harvst_amount": 25.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "peanut", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu uma casa", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2012, "F02_source_income": "Renda proveniente do com\u00c3\u00a9rcio"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["radio", "table", "sofa_set", "mobile_phone"], "F06_crops_contr": "less_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Nov", "Dec"], "A11_years_farm": 8.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "24", "_members": [{"B06_memb_education": "sec_1", "B05_memb_age": 26, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 23, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 745.0, "gps:Longitude": 33.48343475, "E23_memb_assoc": "no", "E19_period_use": 8.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \nLatitude: 0512789\nLongetude: 790818\nAltitude: 709m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11218803, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "6"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 6, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 6, "F_curr_liv": "oxen"}, {"F11_no_owned": 8, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:45ed84c4-114e-4df0-9f5d-c800806c2bee", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios\nCompra vestu\u00c3\u00a1rios \nPaga despesas escolares", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "yes", "A05_end": "2017-04-04T04:29:47.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": ["business", "non_farm_prod"], "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "motor_pump", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["cabbage"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-04T04:01:58.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 6.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 7200.0, "D12_harvst_amount": 21.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Jan", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 60.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 186.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 570.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 200.0, "D17_cost_seed": 2400.0, "D12_harvst_amount": 186.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["cabbage"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 1.0, "D11_harvst_unit": "other", "D19_pesticide_other": null, "D25_price": 25.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 350.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 570.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 200.0, "D17_cost_seed": 4800.0, "D12_harvst_amount": 350.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": "Unidades", "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "cabbage", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu uma casa", "F03_year": 2004, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou uma motorizada", "F03_year": 2008, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou gerador", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou televisor", "F03_year": 2006, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 11, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_cart", "motorcyle", "television", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "sofa_set", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Feb", "Oct"], "A11_years_farm": 10.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "25", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 35, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 29, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 698.0, "gps:Longitude": 33.4834841, "E23_memb_assoc": "no", "E19_period_use": 10.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0512805\nLongetude: 7910861\nAltitude: 709m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11223416, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "11"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 20, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:1c54ee24-22c4-4ee9-b1ad-42d483c08e2e", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Oct", "Nov"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios \nCompra produtos de higiene", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-04T04:44:19.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["beans"], "E09_irr_manager": ["spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-04T04:30:19.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 400.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Oct", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu uma casa", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2009, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola,"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 3, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["radio", "cow_plough", "table", "mobile_phone"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 2.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "26", "_members": [{"B06_memb_education": "pri_2", "B05_memb_age": 56, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 40, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 12.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 706.0, "gps:Longitude": 33.48354341, "E23_memb_assoc": "no", "E19_period_use": 2.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0512443\nLongetude: 7910993\nAltitude: 707m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11230411, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "3"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 36, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 5, "F_curr_liv": "cows"}, {"F11_no_owned": 6, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:3197cded-1fdc-4c0c-9b10-cfcc0bf49c4d", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-05T05:14:45.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-05T04:59:42.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 4.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 5.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 450.0, "D12_harvst_amount": 30.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 50.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu sua casa e comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2013, "F02_source_income": "Renda proveniente de pequenos neg\u00c3\u00b3cios"}, {"F01_item": "Comprou biscleta", "F03_year": 2006, "F02_source_income": "Renda proveniente de pequenos neg\u00c3\u00b3cios"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "poultry"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "radio", "cow_plough", "solar_panel", "solar_torch", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["none"], "A11_years_farm": 36.0, "F09_du_labour": "no", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "27", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 52, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 40, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 14.0, "E20_exper_other": null, "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 679.0, "gps:Longitude": 33.40508367, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0512565\nLongetude: 791093\nAltitude: 7162m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.0430007, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["beans"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 2, "E_yes_group_count": "3", "F_liv": [], "_note2": null, "instanceID": "uuid:1de53318-a8cf-4736-99b1-8239f8822473", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov"], "F07_use_income": "Compra vestu\u00c3\u00a1rios e produtos de higiene e alimentares", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-05T05:36:18.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_irr_ass", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_irr_ass", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-05T05:14:49.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 15.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.3, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 250.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 40.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 150.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 40.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 100.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 3, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 100.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 200.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou aves e biscleta", "F03_year": 2006, "F02_source_income": "Renda proveniente de biscatos"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 2, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": null, "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Aug", "Sept", "Oct"], "A11_years_farm": 2.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "28", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 50, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["housework"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 7.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 721.0, "gps:Longitude": 33.40506932, "E23_memb_assoc": "no", "E19_period_use": 2.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Este casal e o 2 ano que trabalha no campo, depois de deixar de trabalhar na cidade. Eles tem uma parcela grande que divide para produzir as suas cilturas.\n\nPonto geogr\u00c3\u00a1fico \n\nLatitude:0512684\nLongetude: 7910706\nAltitude: 718.0", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "reduce_meals", "borrow_food", "go_forest", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.04290893, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "2"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 10, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:adcd7463-8943-4c67-b25f-f72311409476", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra de alimentos \nConstru\u00c3\u00a7\u00c3\u00a3o de habita\u00c3\u00a7\u00c3\u00a3o \nCompra de alguns bens", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-05T06:05:44.000Z", "C04_window_type": "no", "E21_other_meth": "yes", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": 1000.0, "E15_duration": "longer_year", "E07_bring": "yes", "E14_access": "rented", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["beans"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": 1000.0, "E15_duration": "longer_year", "E07_bring": "yes", "E14_access": "rented", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-05T05:37:30.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1500.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 500.0, "D12_harvst_amount": 28.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 0.2, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 50.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 40.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1000.0, "D12_harvst_amount": 40.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 3, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Mar", "D08_land_planted": 0.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": 1220.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 18.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 18.0, "D16_imprv_seed": "no", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu suas habita\u00c3\u00a7\u00c3\u00b5es", "F03_year": 2007, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou uma motorizada", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["goats"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "frequently", "F14_items_owned": ["motorcyle", "bicycle", "radio", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Feb"], "A11_years_farm": 10.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": ["less_work"], "E24_resp_assoc": "yes", "A03_quest_no": "29", "_members": [{"B06_memb_education": "pri_1", "B05_memb_age": 27, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 34, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinha", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 6.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 657.0, "gps:Longitude": 33.40507276, "E23_memb_assoc": "yes", "E19_period_use": 4.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Quanto tiverem a travessar dificuldades estes recorrem aos pequenos neg\u00c3\u00b3cios parw suprir as necessidades.\n\nPonto geogr\u00c3\u00a1fico\n\nLatitude: 0512602\nLongetude: 7910628\nAltitude: 719.8", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety"], "F05_money_source_other": null, "gps:Latitude": -19.04302413, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 22, "E_yes_group_count": null, "F_liv": [], "_note2": null, "instanceID": "uuid:59341ead-92be-45a9-8545-6edf9f94fdc6", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [{"B13_remitter_location_village": "Maputo", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "maputo", "B14_remitter_location_district": "Maputo", "B12_remittance_money_type": "Militar"}], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-05T06:20:39.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "yes", "A04_start": "2017-04-05T06:05:58.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 400.0, "D12_harvst_amount": 8.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Pagamento de despesas escolares", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou bicicleta", "F03_year": 2010, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "radio", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Feb"], "A11_years_farm": 22.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "30", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 50, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 31, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 22, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 17, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 11, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": null, "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 669.0, "gps:Longitude": 33.40505449, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "A produ\u00c3\u00a7\u00c3\u00a3obaixou devido a secar na campanha de 2015/2016. Mas parece o intervistado estar a omitir informa\u00c3\u00a7\u00c3\u00b5es.\n\nPonto geogr\u00c3\u00a1fico \n\nLatitude: 0512592\nLongetude: 7910559\nAltitude: 718.5m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "limit_portion", "restrict_adults", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.04300478, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 2, "E_yes_group_count": null, "F_liv": [], "_note2": null, "instanceID": "uuid:cb06eb49-dd39-4150-8bbe-a599e074afe8", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 7, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-05T06:38:26.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-05T06:21:20.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 3, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": null, "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 15.0, "F09_du_labour": "no", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "31", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 22, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 4.0, "E20_exper_other": null, "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 704.0, "gps:Longitude": 33.40509382, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513954\nLongetude: 7907302\nAltitude: 820m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.04302176, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "3"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 69, "E_yes_group_count": "8", "F_liv": [{"F11_no_owned": 5, "F_curr_liv": "oxen"}, {"F11_no_owned": 5, "F_curr_liv": "cows"}, {"F11_no_owned": 17, "F_curr_liv": "goats"}, {"F11_no_owned": 5, "F_curr_liv": "pigs"}, {"F11_no_owned": 19, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:25597af3-cd79-449c-a48a-fb9aea6c48bf", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "8", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 8, "_remitters": [{"B13_remitter_location_village": "Chimoio", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "manica", "B14_remitter_location_district": "Chimoio", "B12_remittance_money_type": "Professor"}, {"B13_remitter_location_village": "Messica", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "manica", "B14_remitter_location_district": "Messica", "B12_remittance_money_type": "Agricultor"}], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios \nCompra vestu\u00c3\u00a1rios \nCompra insumos agr\u00c3\u00adcolas", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "yes", "A05_end": "2017-04-05T08:05:32.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 8, "F05_money_source": ["farming"], "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 3}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 4}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 5}, {"E12_apply_water": "furrows", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 6}, {"E12_apply_water": "furrows", "E08_crops": ["onion"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 7}, {"E12_apply_water": "furrows", "E08_crops": ["cabbage"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 8}], "A01_interview_date": "2016-11-21", "B11_remittance_money": "yes", "A04_start": "2017-04-05T06:38:55.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 10.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 5.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 900.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 60.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["sorghum"], "D01_curr_plot": 2, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "July", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 15.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["sunflower"], "D01_curr_plot": 3, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 3400.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 6.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sunflower", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["peanut"], "D01_curr_plot": 4, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 0.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "peanut", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 5, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.3, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 70.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 70.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["onion"], "D01_curr_plot": 6, "D02_total_plot": 0.3, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.3, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 450.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 15.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1600.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 400.0, "D12_harvst_amount": 15.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "onion", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["cabbage"], "D01_curr_plot": 7, "D02_total_plot": 0.2, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 0.2, "D11_harvst_unit": "other", "D19_pesticide_other": null, "D25_price": 25.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 350.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 350.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": "Unidades", "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "cabbage", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 8, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 12.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 12.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2001, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu a sua moradia \nComprou charua", "F03_year": 2011, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou uma motorizada", "F03_year": 2002, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "5", "F10_liv_owned": ["oxen", "cows", "goats", "pigs", "poultry"], "B_no_membrs": 19, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_cart", "motorcyle", "radio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 53.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "32", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 69, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 55, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 52, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 24, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 26, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 22, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 13, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 14, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 15, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 16, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinha", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 17, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 18, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 19, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 8.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatipitched", "gps:Altitude": 703.0, "gps:Longitude": 33.40390565, "E23_memb_assoc": "yes", "E19_period_use": 45.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Este \u00c3\u00a9 o r\u00c3\u00a9gulo de 3o escal\u00c3\u00a3o do povoado de Ruaca.\n\nPonto geogr\u00c3\u00a1fico \nLatitude: 0511851\nLongetude: 7910541\nAltitude: 741m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.04411399, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "19"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 34, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 10, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:0fbd2df1-2640-4550-9fbd-7317feaa4758", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios \nPagamento de despesas escolares \nCompra de vestu\u00c3\u00a1rios \nCompra de insumos agr\u00c3\u00adcolas", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-05T08:25:48.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-05T08:08:19.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 4.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 9.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Mar", "D08_land_planted": 1.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 130.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 166.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1650.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1500.0, "D12_harvst_amount": 166.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 4800.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou caro\u00c3\u00a7a de bois", "F03_year": 2000, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2002, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2004, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "poultry"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_cart", "lorry", "motorcyle", "sterio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 20.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "33", "_members": [{"B06_memb_education": "pri_2", "B05_memb_age": 34, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 32, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 695.0, "gps:Longitude": 33.40383602, "E23_memb_assoc": "no", "E19_period_use": 20.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0514079\nLongetude: 7907305\nAltitude: 822m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.04414887, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "8"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 18, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 7, "F_curr_liv": "cows"}, {"F11_no_owned": 2, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:14c78c45-a7cc-4b2a-b765-17c82b43feb4", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Oct", "Nov"], "F07_use_income": "Pagamento de despesas escolares \nConstru\u00c3\u00a7\u00c3\u00a3o de habita\u00c3\u00a7\u00c3\u00a3o \nCompra de insumos agr\u00c3\u00adcolas \nCompra de produtos aliment\u00c3\u00adcios \nCompra de cabe\u00c3\u00a7as de gado bovino", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-05T16:21:59.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-05T16:00:47.000Z", "D_plots": [{"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Dec", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 700.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 90.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 90.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Pagou as despesas escolares dos filhos", "F03_year": 2005, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu a sua moradia", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["television", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Dec"], "A11_years_farm": 18.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "34", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 42, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 39, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["casu_labourer"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["casu_labourer"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 11, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 706.0, "gps:Longitude": 33.48341559, "E23_memb_assoc": "yes", "E19_period_use": 2.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0512577\nLongetude: 7906193\nAltitude: 7092m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "limit_portion", "restrict_adults", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11219065, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "8"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 45, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 6, "F_curr_liv": "oxen"}, {"F11_no_owned": 8, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:ff7496e7-984a-47d3-a8a1-13618b5683ce", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Despesas da casa e compra de bens", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-05T16:50:25.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_irr_ass", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-05T16:22:13.000Z", "D_plots": [{"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Dec", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": "required_buyer", "D07_ploughing_typ": "ox", "D24_amnt_sold": 80.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 700.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 80.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 4.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 15.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Pagou despesas de lobolo da sua esposa", "F03_year": 1997, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["bicycle", "cow_plough"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Sept", "Oct", "Nov", "Dec"], "A11_years_farm": 45.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "35", "_members": [{"B06_memb_education": "none", "B05_memb_age": 83, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 77, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 733.0, "gps:Longitude": 33.48342515, "E23_memb_assoc": "yes", "E19_period_use": 20.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513275\nLongetude: 7905607\nAltitude: 729.1m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "limit_portion", "reduce_meals", "restrict_adults", "go_forest"], "F05_money_source_other": null, "gps:Latitude": -19.11211362, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 23, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 4, "F_curr_liv": "oxen"}, {"F11_no_owned": 4, "F_curr_liv": "cows"}, {"F11_no_owned": 1, "F_curr_liv": "pigs"}], "_note2": null, "instanceID": "uuid:c90eade0-1148-4a12-8c0e-6387a36f45b1", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": "Compra de insumos agr\u00c3\u00adcolas \nCompra de produtos aliment\u00c3\u00adcios \nPagamento de despesas escolares \nCompra de charuas", "G01_no_meals": 3, "E17_no_enough_water": "no", "F04_need_money": "no", "A05_end": "2017-04-05T17:10:53.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-05T16:50:48.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 24.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "other_rel"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 1200.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 30.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 600.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 30.0, "D16_imprv_seed": "no", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "other_rel"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 600.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Pagou despesas escolares dos filhos", "F03_year": 2001, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2004, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "pigs"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "once", "F14_items_owned": ["cow_cart", "bicycle", "radio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "abt_half", "B17_parents_liv": "no", "G02_months_lack_food": ["none"], "A11_years_farm": 23.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "36", "_members": [{"B06_memb_education": "none", "B05_memb_age": 60, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 52, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 21, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Sobrinha", "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 21, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 710.0, "gps:Longitude": 33.4833843, "E23_memb_assoc": "yes", "E19_period_use": 23.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513042\nLongetude: 7905477\nAltitude: 713.9m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11218058, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "6"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 8, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:408c6c93-d723-45ef-8dee-1b1bd3fe20cd", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-05T17:26:51.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-05T17:17:48.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 25.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu a sua moradia", "F03_year": 2014, "F02_source_income": "Renda proveniente de trabalhos sazonais"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 3, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "television", "radio", "cow_plough", "solar_panel", "solar_torch", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Nov", "Dec"], "A11_years_farm": 8.0, "F09_du_labour": "no", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "37", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 30, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 26, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 21, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Tia", "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 12.0, "E20_exper_other": null, "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 711.0, "gps:Longitude": 33.48339525, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0513042\nLongetude: 7905477\nAltitude: 714.1m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11217951, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "3"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 19, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 4, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:81309594-ff58-4dc1-83a7-72af5952ee08", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 3, "_remitters": [{"B13_remitter_location_village": "Manica", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "manica", "B14_remitter_location_district": "Manica", "B12_remittance_money_type": "Pedreiro"}], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios \nCompra produtos de higiene", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-05T17:50:57.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "yes", "A04_start": "2017-04-05T17:28:12.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["child"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 190.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 141.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 900.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 590.0, "D12_harvst_amount": 141.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino \nComprou pulverizador \nComprou 2 Biscletas \nComprou radio\nComprou cabe\u00c3\u00a7as de gado caprino", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "yes", "E26_affect_conflicts": "never", "F14_items_owned": ["bicycle", "radio", "cow_plough", "solar_panel", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Nov"], "A11_years_farm": 19.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "38", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 52, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 50, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 22, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 30, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 32, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 19, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinha", "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinha", "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 696.0, "gps:Longitude": 33.48337467, "E23_memb_assoc": "yes", "E19_period_use": 9.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0511572\nLongetude: 7908720\nAltitude: 694.5m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["limit_variety", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11222939, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "10"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 22, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}], "_note2": null, "instanceID": "uuid:c0fb6310-55af-4831-ae3d-2729556c3285", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-06T08:44:47.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-06T08:31:17.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 7.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 36.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu a sua moradia", "F03_year": 2000, "F02_source_income": "Renda proveniente da actividade de pr\u00c3\u00a1ticas da medicina tradicional"}], "F_liv_count": "1", "F10_liv_owned": ["oxen"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": null, "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Nov"], "A11_years_farm": 22.0, "F09_du_labour": "no", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "39", "_members": [{"B06_memb_education": "none", "B05_memb_age": 64, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm", "other"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": "Medica tradicional"}, {"B06_memb_education": "none", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 0, "B02_memb_gender": "female", "B04_memb_marital_status": "na", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 0, "B08_interviewee_activities": ["other"], "B03_relationship_du_other": "0", "B08_interviewee_activities_other": "0"}], "A06_province": "province1", "gps:Accuracy": 20.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 0.0, "gps:Longitude": 33.4046671, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0511450\nLongetude: 7109098\nAltitude: 693.8m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.0433618, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "6"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 23, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 5, "F_curr_liv": "oxen"}], "_note2": null, "instanceID": "uuid:c0b34854-eede-4e81-b183-ef58a45bfc34", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [{"B13_remitter_location_village": "Messica", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "manica", "B14_remitter_location_district": "Manica", "B12_remittance_money_type": "Comerciante de peixe"}], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Pagamento de despesas escolares \nPagamento de despesas da casa", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-06T09:03:47.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "flood", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "spouse", "child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "rain_flood", "E06_plot_no": 2}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "yes", "A04_start": "2017-04-06T08:44:51.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 4.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Feb", "D08_land_planted": 2.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 700.0, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 27.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 3200.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou charua\nConstruiu a sua moradia", "F03_year": 2004, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["oxen"], "B_no_membrs": 9, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["bicycle", "radio", "cow_plough", "solar_panel", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Sept", "Oct", "Nov"], "A11_years_farm": 23.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "40", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 48, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 28, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 28, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": "Irm\u00c3\u00a3o", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 22, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 3, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 22.112, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 0.0, "gps:Longitude": 33.4046671, "E23_memb_assoc": "yes", "E19_period_use": 23.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0511535\nLongetude: 7909022\nAltitude: 695.3m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.0433618, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "9"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 22, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 6, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:b3ba34d8-eea1-453d-bc73-c141bcbbc5e5", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-06T09:14:05.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-06T09:03:50.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 500.0, "D12_harvst_amount": 12.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 3200.0}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [], "F_liv_count": "2", "F10_liv_owned": ["oxen", "poultry"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["motorcyle", "bicycle", "radio", "cow_plough", "table"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov"], "A11_years_farm": 22.0, "F09_du_labour": "no", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "41", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 37, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 27, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 13, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 13.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 679.0, "gps:Longitude": 33.40485363, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0511503\nLongetude: 7909131\nAltitude: 697.7m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["limit_portion", "reduce_meals"], "F05_money_source_other": null, "gps:Latitude": -19.04339398, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 8, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 4, "F_curr_liv": "cows"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}, {"F11_no_owned": 25, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:e3a1dd8a-1bda-428c-a014-2b527f11ae64", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Aug", "Sept"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-06T09:30:54.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["other"], "E09_irr_manager": ["spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": "Murango", "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-06T09:14:22.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["other"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": "Murango", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Mar", "D08_land_planted": 0.5, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 0.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [], "F_liv_count": "3", "F10_liv_owned": ["cows", "goats", "poultry"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["mobile_phone"], "F06_crops_contr": "less_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Nov", "Dec"], "A11_years_farm": 8.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "42", "_members": [{"B06_memb_education": "pri_2", "B05_memb_age": 28, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 60, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "other"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": "Antigo Combatente"}, {"B06_memb_education": "pri_4", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 699.0, "gps:Longitude": 33.40484617, "E23_memb_assoc": "no", "E19_period_use": 5.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0511480\nLongetude: 7908743\nAltitude: 688.8m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals"], "F05_money_source_other": null, "gps:Latitude": -19.04346041, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "8"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 29, "E_yes_group_count": "4", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:b4dff49f-ef27-40e5-a9d1-acf287b47358", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "4", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": "Comprou produtos de higiene e alimentares", "G01_no_meals": 2, "E17_no_enough_water": "no", "F04_need_money": "no", "A05_end": "2017-04-06T09:53:53.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 4, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "other_non_rel"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}, {"E12_apply_water": "furrows", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head", "other_non_rel"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 4}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-06T09:31:56.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 700.0, "D12_harvst_amount": 10.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["amendoim"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "other_non_rel"], "D10_who_own": "du", "D06_mnth_harvest": "Mar", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1400.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 7.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 7.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "amendoim", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [], "D_curr_crop": null, "D_repeat_times_count": "0", "D05_times": 0}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "other_non_rel"], "D10_who_own": "du", "D06_mnth_harvest": "Oct", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 200.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 200.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["own_manure"], "D14_cost_fert": null}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes", "peanut"], "D01_curr_plot": 4, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "other_non_rel"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 900.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 150.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 700.0, "D17_cost_seed": null, "D12_harvst_amount": 150.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["own_manure"], "D14_cost_fert": null}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "other_non_rel"], "D10_who_own": "du", "D06_mnth_harvest": "Mar", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1400.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 7.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 7.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "peanut", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou telem\u00c3\u00b3vel \nComprou trac\u00c3\u00a7\u00c3\u00a3o animal (charua)\nComprou terra para habita\u00c3\u00a7\u00c3\u00a3o \nComprou insumos agr\u00c3\u00adcolas \nPagou despesas escolares dos filhos", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_plough", "mobile_phone"], "F06_crops_contr": "abt_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Feb", "Oct", "Nov", "Dec"], "A11_years_farm": 3.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "43", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 34, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 29, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 30.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 605.0, "gps:Longitude": 33.40472726, "E23_memb_assoc": "no", "E19_period_use": 3.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0512904\nLongetude: 7905880\nAltitude: 707m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.04303063, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 6, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 1, "F_curr_liv": "cows"}, {"F11_no_owned": 10, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:f9fadf44-d040-4fca-86c1-2835f79c4952", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-06T14:53:01.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-06T14:44:32.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 75.0, "D12_harvst_amount": 6.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu uma casa", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou charua", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "poultry"], "B_no_membrs": 2, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["radio", "solar_torch"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Dec"], "A11_years_farm": 3.0, "F09_du_labour": "no", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "44", "_members": [{"B06_memb_education": "none", "B05_memb_age": 70, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 53, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": null, "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 716.0, "gps:Longitude": 33.40458039, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \nLatitude: 0512951\nLongetude: 7905685\nAltitude: 694m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["borrow_food"], "F05_money_source_other": null, "gps:Latitude": -19.04315107, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "2"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 7, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 2, "F_curr_liv": "goats"}, {"F11_no_owned": 8, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:e3554d22-35b1-4fb9-b386-dd5866ad5792", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "1", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "yes", "A05_end": "2017-04-06T15:11:57.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": ["farming", "non_farm_prod"], "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["beans"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-06T14:53:04.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 300.0, "D12_harvst_amount": 9.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1700.0}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 30.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 950.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 30.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1700.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 1.0, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 170.0, "D12_harvst_amount": 2.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1700.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou bois, motorizada e pulverizador", "F03_year": 2010, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu uma casa", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "poultry"], "B_no_membrs": 9, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["none"], "A11_years_farm": 25.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "45", "_members": [{"B06_memb_education": "sec_1", "B05_memb_age": 45, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_4", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinha", "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 28.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 703.0, "gps:Longitude": 33.40466493, "E23_memb_assoc": "no", "E19_period_use": 20.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513446\nLongetude: 7905426\nAltitude: 768m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.04312371, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "9"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 42, "E_yes_group_count": "5", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 6, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:35f297e0-aa5d-4149-9b7b-4965004cfc37", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "5", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios \nCompra de insumos agr\u00c3\u00adcolas \nCompra de produtos de higiene", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-06T15:45:32.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 5, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}, {"E12_apply_water": "furrows", "E08_crops": ["onion"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 4}, {"E12_apply_water": "furrows", "E08_crops": ["beans"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 5}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-06T15:19:41.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 4000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 15.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 3600.0}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Jan", "D08_land_planted": 2.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 150.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 810.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 150.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 3600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 70.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 810.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 100.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1800.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["onion"], "D01_curr_plot": 4, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 7.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 7.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1800.0}], "D_curr_crop": "onion", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 5, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Mar", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 810.0, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1800.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou uma motorizada", "F03_year": 2005, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2006, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "poultry"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "once", "F14_items_owned": ["motorcyle", "computer", "television", "sterio", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Sept", "Oct", "Nov"], "A11_years_farm": 21.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "46", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 42, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming", "artisan"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 36, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming", "comm_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming", "comm_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_4", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 703.0, "gps:Longitude": 33.40458421, "E23_memb_assoc": "no", "E19_period_use": 21.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513595\nLongetude: 7905568\nAltitude: 773m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.04307032, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "10"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 2, "E_yes_group_count": "2", "F_liv": [], "_note2": null, "instanceID": "uuid:2d0b1936-4f82-4ec3-a3b5-7c3c8cd6cc2b", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra de produtos da primeira necessidade \nCompra de terra para actividades agr\u00c3\u00adcolas", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-07T14:19:45.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-07T14:05:25.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 2.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 600.0, "D12_harvst_amount": 13.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 80.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 80.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1300.0, "D12_harvst_amount": 80.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 6400.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu um estabelecimento comercial", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 2, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "once", "F14_items_owned": ["solar_torch", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 2.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "47", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 21, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 30, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["small_scale_farm", "comm_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm", "comm_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 689.0, "gps:Longitude": 33.48339791, "E23_memb_assoc": "yes", "E19_period_use": 2.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513220\nLongetude: 7907642\nAltitude: 757m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11226093, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "2"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 58, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 6, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:e180899c-7614-49eb-a97c-40ed013a38a2", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-07T14:40:23.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-07T14:19:49.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "sorghum"], "D01_curr_plot": 1, "D02_total_plot": 3.5, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino \nComprou trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2003, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "poultry"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["radio"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["June", "July", "Aug", "Sept", "Oct", "Nov"], "A11_years_farm": 48.0, "F09_du_labour": "no", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "48", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 58, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 54, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 28, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 28, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 12.0, "E20_exper_other": null, "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 689.0, "gps:Longitude": 33.48353345, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0512674\nLongetude: 7906683\nAltitude: 722.4m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["limit_variety"], "F05_money_source_other": null, "gps:Latitude": -19.11222978, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize", "sorghum"], "E04_res_water_field_other": null, "E05_tried_access": "other", "E05_tried_access_other": "Agua ja n\u00c3\u00a3o chega na minha machamba", "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 26, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "goats"}, {"F11_no_owned": 6, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:2303ebc1-2b3c-475a-8916-b322ebf18440", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-07T14:55:51.000Z", "C04_window_type": "yes", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-07T14:43:09.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "sorghum"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [], "F_liv_count": "2", "F10_liv_owned": ["goats", "poultry"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Nov", "Dec"], "A11_years_farm": 12.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "49", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 26, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 30, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 12.0, "E20_exper_other": null, "A09_village": "49", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 694.0, "gps:Longitude": 33.48334844, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 18'444.7559\"S\nLongetude: 33\u00c2\u00b06'29.60255\"E\nAltitude: 689m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["reduce_meals", "go_forest", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11228265, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize", "sorghum"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "6"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 7, "E_yes_group_count": "1", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:4267c33c-53a7-46d9-8bd6-b96f58a4f92c", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios \nCompra de insumos agr\u00c3\u00adcolas \nCompra de vestu\u00c3\u00a1rios", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-07T15:26:23.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize", "tomatoes", "piri_piri"], "E09_irr_manager": ["parent"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-07T14:56:01.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "tomatoes", "piri_piri"], "D01_curr_plot": 1, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "3", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 0.2, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 0.2, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 100.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 25.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 28.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 400.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Feb", "D08_land_planted": 1.0, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 10.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 4400.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 4400.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "piri_piri", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou produtos aliment\u00c3\u00adcios", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["poultry"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["solar_torch"], "F06_crops_contr": "abt_half", "B17_parents_liv": "no", "G02_months_lack_food": ["June", "July", "Aug", "Sept", "Oct", "Nov", "Dec"], "A11_years_farm": 6.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "50", "_members": [{"B06_memb_education": "adl_literacy", "B05_memb_age": 23, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm", "small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 29, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 12.0, "E20_exper_other": "no", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 718.0, "gps:Longitude": 33.48344521, "E23_memb_assoc": "yes", "E19_period_use": 1.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0512755\nLongetude: 790499\nAltitude: 745.0m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["borrow_food", "go_forest", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11220496, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "6"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 30, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:18ac8e77-bdaf-47ab-85a2-e4c947c9d3ce", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-07T15:39:10.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-07T15:27:45.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [], "F_liv_count": "1", "F10_liv_owned": ["poultry"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["radio"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov"], "A11_years_farm": 11.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "51", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 37, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 12.0, "E20_exper_other": null, "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 709.0, "gps:Longitude": 33.48338443, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 051009\nLongetude: 7906182\nAltitude: 732.8m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["go_forest", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11221446, "E_no_group": [{"E04_res_water_field": "other", "E03_crops": ["maize"], "E04_res_water_field_other": "A parceira esta localizada na zona montanhosa", "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 15, "E_yes_group_count": "1", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 20, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:6db55cb4-a853-4000-9555-757b7fae2bcf", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "A sua produ\u00c3\u00a7\u00c3\u00a3o \u00c3\u00a9 para sustentar a sua fam\u00c3\u00adlia ja que o chefe da UD tem emprego.", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-08T05:02:58.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T04:44:09.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 21.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou uma motorizada", "F03_year": 2010, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "poultry"], "B_no_membrs": 11, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["motorcyle", "television", "radio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "less_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Aug", "Sept", "Oct", "Nov"], "A11_years_farm": 15.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "52", "_members": [{"B06_memb_education": "none", "B05_memb_age": 39, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 43, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "salar_job"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "salar_job"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": "no", "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 694.0, "gps:Longitude": 33.48335287, "E23_memb_assoc": "no", "E19_period_use": 15.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513257\nLongetude: 7906190\nAltitude: 755.4m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["limit_variety", "reduce_meals"], "F05_money_source_other": null, "gps:Latitude": -19.11223637, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "11"}, {"C06_rooms": 3, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 16, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 5, "F_curr_liv": "oxen"}, {"F11_no_owned": 6, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:cc7f75c5-d13e-43f3-97e5-4f4c03cb4b12", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [{"B13_remitter_location_village": "Manica", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "manica", "B14_remitter_location_district": "Manica", "B12_remittance_money_type": "Agricultor"}], "E18_months_no_water": ["Aug", "Sept", "Oct"], "F07_use_income": "Compra de produtos da primeira necessidade \nCompra de utens\u00c3\u00adlios dom\u00c3\u00a9sticos \nCompra de produtos aliment\u00c3\u00adcios \nCompra de insumos agr\u00c3\u00adcolas \nCompra de produtos de higiene", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-08T05:33:51.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["beans", "tomatoes", "cabbage", "vegetable"], "E09_irr_manager": ["spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "yes", "A04_start": "2017-04-08T05:03:08.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans", "tomatoes", "cabbage", "vegetable"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "4", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 2000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 50.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 720.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 650.0, "D12_harvst_amount": 5.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1700.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 300.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 30.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 720.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 650.0, "D12_harvst_amount": 30.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1700.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.5, "D11_harvst_unit": "other", "D19_pesticide_other": null, "D25_price": 20.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 350.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 720.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 650.0, "D12_harvst_amount": 350.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": "Unidades", "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1700.0}], "D_curr_crop": "cabbage", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Mar", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 5.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 720.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 650.0, "D12_harvst_amount": 5.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1700.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado, caprino e bovino \nConstru\u00c3\u00a7\u00c3\u00a3o de habita\u00c3\u00a7\u00c3\u00a3o \nPagamento de despesas escolares dos filhos", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "goats"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "frequently", "F14_items_owned": ["bicycle", "radio", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Nov"], "A11_years_farm": 16.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "21", "_members": [{"B06_memb_education": "pri_3", "B05_memb_age": 35, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["housework", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["housework", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 687.0, "gps:Longitude": 33.48343865, "E23_memb_assoc": "yes", "E19_period_use": 16.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \nLatitude: 0513006\nLongetude: 7906789\nAltitude: 737.4m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_portion"], "F05_money_source_other": null, "gps:Latitude": -19.11216571, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "8"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 15, "E_yes_group_count": "1", "F_liv": [], "_note2": null, "instanceID": "uuid:273ab27f-9be3-4f3b-83c9-d3e1592de919", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 3, "_remitters": [{"B13_remitter_location_village": "25 de Setembro", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "manica", "B14_remitter_location_district": "Chimoio", "B12_remittance_money_type": "Professor"}], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov", "Dec"], "F07_use_income": "Compra mobili\u00c3\u00a1rio \nCompra de produtos aliment\u00c3\u00adcios \nCompra de produtos de higiene", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-08T05:52:15.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "sprinkler", "E08_crops": ["maize", "tomatoes"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "yes", "A04_start": "2017-04-08T05:36:55.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "tomatoes"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 400.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 750.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 4.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu uma casa", "F03_year": 2006, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": null, "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Sept", "Oct", "Nov"], "A11_years_farm": 10.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "54", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 50, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 35, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 40, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 681.0, "gps:Longitude": 33.48335527, "E23_memb_assoc": "no", "E19_period_use": 10.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513028\nLongetude: 7905929\nAltitude: 727.8m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11220247, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 23, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:883c0433-9891-4121-bc63-744f082c1fa0", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-08T06:05:41.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T05:52:32.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 4, "D02_total_plot": 9.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 9.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado caprino", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou televisor e gerador", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["goats"], "B_no_membrs": 9, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["television", "cow_plough", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov"], "A11_years_farm": 23.0, "F09_du_labour": "no", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "55", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 35, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 31, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": null, "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 702.0, "gps:Longitude": 33.48333393, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513258\nLongetude: 7906420\nAltitude: 756.9m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11228974, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "9"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 23, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 10, "F_curr_liv": "oxen"}, {"F11_no_owned": 4, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:973c4ac6-f887-48e7-aeaf-4476f2cfab76", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 4, "_remitters": [], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Compra produtos da primeira necessidade \nCompra produtos de higiene", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-08T06:26:12.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["child", "parent"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T06:05:59.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 5.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1200.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 20.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 4200.0, "D12_harvst_amount": 133.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 1500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 50.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 750.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 2500.0, "D12_harvst_amount": 50.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 6400.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino \nConstruiu uma moradia \nComprou bens da casa", "F03_year": 2012, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "goats"], "B_no_membrs": 12, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["motorcyle", "bicycle", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 23.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "56", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 46, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 38, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 24, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 689.0, "gps:Longitude": 33.48341837, "E23_memb_assoc": "yes", "E19_period_use": 23.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513209\nLongetude: 67905987\nAltitude: 734.8m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11217264, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "12"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 27, "E_yes_group_count": "2", "F_liv": [], "_note2": null, "instanceID": "uuid:a7184e55-0615-492d-9835-8f44f3b03a71", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 4, "_remitters": [], "E18_months_no_water": null, "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios, insumos agr\u00c3\u00adcolas e produtos de higiene.", "G01_no_meals": 2, "E17_no_enough_water": "no", "F04_need_money": "no", "A05_end": "2017-04-08T06:39:40.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["other"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": "Inhame", "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T06:26:22.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1400.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 14.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["other"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": "Inhame", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 2400.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou mobili\u00c3\u00a1rio da casa\nComprou radio\nComprou painel solar", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["radio"], "F06_crops_contr": "less_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 20.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "57", "_members": [{"B06_memb_education": "sec_3", "B05_memb_age": 27, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 22, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 695.0, "gps:Longitude": 33.48338576, "E23_memb_assoc": "no", "E19_period_use": 20.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0313307\nLongetude: 7910052\nAltitude: 738m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11227947, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "4"}, {"C06_rooms": 3, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 45, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 4, "F_curr_liv": "cows"}, {"F11_no_owned": 3, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:a7a3451f-cd0d-4027-82d9-8dcd1234fcca", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 5, "_remitters": [], "E18_months_no_water": null, "F07_use_income": "Compra produtos da primeira necessidade", "G01_no_meals": 2, "E17_no_enough_water": "no", "F04_need_money": "no", "A05_end": "2017-04-08T08:48:51.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["beans"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["other"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": "Inhame", "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 3}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T08:25:49.000Z", "D_plots": [{"D04_crops_harvsted": ["beans"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 2000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["other"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": "Inhame", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 19.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 19.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 3, "D02_total_plot": 10.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 900.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 60.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 85.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2011, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou motorizada", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu uma casa", "F03_year": 2008, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 11, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 35.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "58", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 45, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 38, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 27, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Irm\u00c3\u00a3o", "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_4", "B05_memb_age": 24, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Irm\u00c3\u00a3o", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Irm\u00c3\u00a3o", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 723.0, "gps:Longitude": 33.48332076, "E23_memb_assoc": "no", "E19_period_use": 35.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \nLatitude: 9513307\nLongetude: 7910052\nAltitude: 738m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.1121758, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "11"}, {"C06_rooms": 3, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 60, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 1, "F_curr_liv": "cows"}, {"F11_no_owned": 13, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:1936db62-5732-45dc-98ff-9b3ac7a22518", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-08T09:02:34.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T08:52:05.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "other"], "D01_curr_plot": 1, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": "Inhame", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 400.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 18.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu sua habita\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "poultry"], "B_no_membrs": 2, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": null, "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 60.0, "F09_du_labour": "no", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "59", "_members": [{"B06_memb_education": "pri_2", "B05_memb_age": 70, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 45, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 13.0, "E20_exper_other": null, "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 683.0, "gps:Longitude": 33.48333251, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513307\nLongetude: 7910052\nAltitude: 738m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.1123395, "E_no_group": [{"E04_res_water_field": "field_wet", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "2"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 15, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 5, "F_curr_liv": "cows"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}, {"F11_no_owned": 9, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:85465caf-23e4-4283-bb72-a0ef30e30176", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios \nCompra vestu\u00c3\u00a1rios \nPaga despesas escolares \nCompra produtos de higiene", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-08T09:20:18.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district2", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["du_head", "spouse", "other_rel"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "spouse", "other_rel"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["peanut"], "E09_irr_manager": ["du_head", "spouse", "other_rel"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T09:03:01.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 25.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 3000.0}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["other_non_rel"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 80.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 850.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 80.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["peanut"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 150.0, "D12_harvst_amount": 20.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "peanut", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino e caprino", "F03_year": 2002, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "poultry"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_plough"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 12.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "60", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 35, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 694.0, "gps:Longitude": 33.48341208, "E23_memb_assoc": "no", "E19_period_use": 12.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513452\nLongetude: 7907930\nAltitude: 759m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11225763, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "8"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 14, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 6, "F_curr_liv": "cows"}, {"F11_no_owned": 12, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:2401cf50-8859-44d9-bd14-1bf9128766f2", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 4, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct"], "F07_use_income": "Compra vestu\u00c3\u00a1rios \nPagamento de despesas escolares", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-08T11:14:09.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["tomatoes", "onion", "cabbage", "vegetable", "piri_piri"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T10:47:11.000Z", "D_plots": [{"D04_crops_harvsted": ["tomatoes", "onion", "cabbage", "vegetable", "piri_piri"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "5", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 2.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 45.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1200.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 600.0, "D17_cost_seed": 800.0, "D12_harvst_amount": 45.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 40.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 200.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 500.0, "D12_harvst_amount": 40.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "onion", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 2.0, "D11_harvst_unit": "other", "D19_pesticide_other": null, "D25_price": 25.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 100.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 200.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 700.0, "D12_harvst_amount": 250.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": "Unidades", "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}, {"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "other", "D19_pesticide_other": null, "D25_price": 25.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 100.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 100.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": "Unidades", "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "cabbage", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 8.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 200.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 500.0, "D12_harvst_amount": 8.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Nov", "D08_land_planted": 2.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 400.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 112.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 112.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "piri_piri", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 6.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1200.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 40.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou motorizada e 6 cabe\u00c3\u00a7as de gado bovino", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou carroca de boi", "F03_year": 2012, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_cart", "motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_panel", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Feb", "Dec"], "A11_years_farm": 14.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "yes", "A03_quest_no": "61", "_members": [{"B06_memb_education": "pri_2", "B05_memb_age": 38, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 25, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 40, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 13.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 712.0, "gps:Longitude": 33.48341635, "E23_memb_assoc": "yes", "E19_period_use": 13.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0513220\nLongetude: 7907642\nAltitude: 757m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "restrict_adults"], "F05_money_source_other": null, "gps:Latitude": -19.11218035, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "10"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 5, "E_yes_group_count": null, "F_liv": [], "_note2": null, "instanceID": "uuid:c6597ecc-cc2a-4c35-a6dc-e62c71b345d6", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-08T13:41:21.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T13:27:58.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}, {"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["sorghum"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou utens\u00c3\u00adlios dom\u00c3\u00a9sticos \nCompra vestu\u00c3\u00a1rios", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola,"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "radio", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Aug", "Sept", "Oct", "Nov"], "A11_years_farm": 5.0, "F09_du_labour": "yes", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "62", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 25, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 30, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["other"], "B09_interviewee_main_activities_other": "Garimpo", "B_memb_no": 2, "B08_interviewee_activities": ["other"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": "Garimpo"}, {"B06_memb_education": "pri_4", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 18.0, "E20_exper_other": null, "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 719.0, "gps:Longitude": 33.48339699, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513275\nLongetude: 7907870\nAltitude: 758m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "limit_portion", "reduce_meals", "restrict_adults", "borrow_food", "go_forest", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11216869, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["sorghum", "bananas"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 10, "E_yes_group_count": null, "F_liv": [], "_note2": null, "instanceID": "uuid:86ed4328-7688-462f-aac7-d6518414526a", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-08T13:52:07.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T13:41:39.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "sesame"], "D01_curr_plot": 1, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 12.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 2000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sesame", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Abriu um neg\u00c3\u00b3cio", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": null, "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Oct", "Nov", "Dec"], "A11_years_farm": 1.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "63", "_members": [{"B06_memb_education": "sec_2", "B05_memb_age": 25, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["artisan"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 25, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 25.0, "E20_exper_other": null, "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 702.0, "gps:Longitude": 33.4833903, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513139\nLongetude: 7907592\nAltitude: 757m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "restrict_adults"], "F05_money_source_other": null, "gps:Latitude": -19.11220024, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize", "sesame"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "4"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 1, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 7, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:28cfd718-bf62-4d90-8100-55fafbe45d06", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-08T14:02:24.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T13:52:30.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 960.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 100.0, "D12_harvst_amount": 10.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["sesame"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "spouse_du_parts", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 2500.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 7.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 150.0, "D12_harvst_amount": 7.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sesame", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu uma casa", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["goats"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "solar_torch", "table", "sofa_set", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Feb", "Dec"], "A11_years_farm": 1.0, "F09_du_labour": "no", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "64", "_members": [{"B06_memb_education": "none", "B05_memb_age": 28, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 13, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": null, "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 704.0, "gps:Longitude": 33.48339576, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513266\nLongetude: 7908155\nAltitude: 746m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "restrict_adults", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.1121962, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_sale", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "field_wet", "E03_crops": ["sesame"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_sale", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "6"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 20, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:143f7478-0126-4fbc-86e0-5d324339206b", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios \nCompra produtos de higiene \nCompra vestu\u00c3\u00a1rios", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-08T14:15:45.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["child", "parent"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T14:02:49.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 24.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Oct", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 400.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 50.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 750.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 900.0, "D12_harvst_amount": 50.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1400.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino \nConstru\u00c3\u00a7\u00c3\u00a3o sua morada \nComprou uma motorizada", "F03_year": 2010, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "once", "F14_items_owned": ["motorcyle", "radio", "cow_plough", "table"], "F06_crops_contr": "abt_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Feb", "Mar"], "A11_years_farm": 20.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "65", "_members": [{"B06_memb_education": "pri_3", "B05_memb_age": 40, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 35, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 39.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 706.0, "gps:Longitude": 33.48341209, "E23_memb_assoc": "no", "E19_period_use": 20.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0511306\nLongetude: 7908924\nAltitude: 690.2m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11221474, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "8"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 37, "E_yes_group_count": "1", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 4, "F_curr_liv": "cows"}, {"F11_no_owned": 10, "F_curr_liv": "goats"}, {"F11_no_owned": 1, "F_curr_liv": "donkeys"}], "_note2": null, "instanceID": "uuid:a457eab8-971b-4417-a971-2e55b8702816", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 5, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct"], "F07_use_income": "Usa para fazer dispensas da casa\nCompra insumos agr\u00c3\u00adcolas \nCompra vestu\u00c3\u00a1rios", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-08T21:33:45.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["beans", "tomatoes", "onion", "vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 1}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T21:09:38.000Z", "D_plots": [{"D04_crops_harvsted": ["beans", "tomatoes", "onion", "vegetable"], "D01_curr_plot": 1, "D02_total_plot": 8.0, "D03_unit_land": "hactare", "D_crops_count": "4", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1400.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 900.0, "D12_harvst_amount": 4.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Mar", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 150.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 750.0, "D12_harvst_amount": 150.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 30.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1000.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 350.0, "D12_harvst_amount": 30.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 150.0}, {"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 20.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 100.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 900.0, "D12_harvst_amount": 20.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "onion", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 30.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 400.0, "D12_harvst_amount": 30.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou motorizada", "F03_year": 2001, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2003, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu sua casa", "F03_year": 2005, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou caro\u00c3\u00a7a de bois", "F03_year": 2006, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "donkeys"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "frequently", "F14_items_owned": ["cow_cart", "motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_panel", "solar_torch", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 16.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "66", "_members": [{"B06_memb_education": "sec_1", "B05_memb_age": 37, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 26, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 8.0, "E20_exper_other": "no", "A09_village": "village1", "C01_respondent_roof_type": "mabatipitched", "gps:Altitude": 702.0, "gps:Longitude": 33.48339142, "E23_memb_assoc": "yes", "E19_period_use": 10.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513168\nLongetude: 7907004\nAltitude: 730m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.1121722, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "10"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 31, "E_yes_group_count": "1", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 3, "F_curr_liv": "goats"}, {"F11_no_owned": 3, "F_curr_liv": "donkeys"}], "_note2": null, "instanceID": "uuid:6c15d667-2860-47e3-a5e7-7f679271e419", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Oct", "Nov"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios \nCompra de vestu\u00c3\u00a1rios \nCompra de insumos agr\u00c3\u00adcolas", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-08T21:49:02.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize", "tomatoes", "vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 1}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T21:34:23.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "tomatoes", "vegetable"], "D01_curr_plot": 1, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "3", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 17.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.3, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 300.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 16.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 780.0, "D12_harvst_amount": 16.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 450.0, "D12_harvst_amount": 10.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou motorizada", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu a sua casa", "F03_year": 1999, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Pagou despesas escolares", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "donkeys"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["motorcyle", "radio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 9.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "67", "_members": [{"B06_memb_education": "sec_3", "B05_memb_age": 31, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 21, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatipitched", "gps:Altitude": 717.0, "gps:Longitude": 33.48338805, "E23_memb_assoc": "no", "E19_period_use": 9.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513148\nLongetude: 7907004\nAltitude: 730m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11209398, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "5"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 52, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 1, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:ef04b3eb-b47d-412e-9b09-4f5e08fc66f9", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Nov", "Dec"], "F07_use_income": "Compra vestu\u00c3\u00a1rios \nCompra produtos aliment\u00c3\u00adcios \nCompra insumos agr\u00c3\u00adcolas", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T22:06:57.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["piri_piri"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 3}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-08T21:49:40.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 19.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["piri_piri"], "D01_curr_plot": 2, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 13.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 15.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "piri_piri", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 3, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Dec", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 38.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu a sua casa", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Pagou despesas escolares dos filhos", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["motorcyle", "television", "sterio", "solar_panel", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 21.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "68", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 52, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 38, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 13, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 13, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatipitched", "gps:Altitude": 710.0, "gps:Longitude": 33.4834782, "E23_memb_assoc": "no", "E19_period_use": 21.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513358\nLongetude: 7907664\nAltitude: 766m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11214985, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "8"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 12, "E_yes_group_count": "1", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:f86933a5-12b8-4427-b821-43c5b039401d", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Nov", "Dec"], "F07_use_income": "Compra alimentos \nCompra vestu\u00c3\u00a1rios \nCompra material escolar", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T22:21:08.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize", "tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 1}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-09T22:08:07.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "tomatoes"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 5.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 9.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1200.0}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 20.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 950.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1220.0, "D12_harvst_amount": 20.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1200.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu a sua moradia", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Pagou despesas escolares dos filhos", "F03_year": 2003, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["goats"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["bicycle", "radio", "solar_torch", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["none"], "A11_years_farm": 12.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "69", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 52, "B02_memb_gender": "male", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 8.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 708.0, "gps:Longitude": 33.48340465, "E23_memb_assoc": "no", "E19_period_use": 12.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513321\nLongetude: 7907156\nAltitude: 740m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11216693, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "4"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 25, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 2, "F_curr_liv": "goats"}, {"F11_no_owned": 15, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:1feb0108-4599-4bf9-8a07-1f5e66a50a0a", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios \nCompra de vestu\u00c3\u00a1rios \nPagamento de despesas escolares", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T22:40:57.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 3}], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-09T22:21:23.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 8.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 8.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 5.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": null, "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 14.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.2, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 3, "D02_total_plot": 0.2, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 0.2, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu uma casa", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2002, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Pagou despesas escolares dos filhos", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "poultry"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_cart", "bicycle", "radio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["none"], "A11_years_farm": 20.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "70", "_members": [{"B06_memb_education": "pri_2", "B05_memb_age": 42, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 35, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 19, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 8.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatipitched", "gps:Altitude": 707.0, "gps:Longitude": 33.48341471, "E23_memb_assoc": "no", "E19_period_use": 20.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513536\nLongetude: 7908272\nAltitude: 752m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11217415, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "8"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 14, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}, {"F11_no_owned": 3, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:761f9c49-ec93-4932-ba4c-cc7b78dfcef1", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios \nCompra mobili\u00c3\u00a1rio \nCompra animais", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T15:19:22.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}], "A01_interview_date": "2016-11-18", "B11_remittance_money": "no", "A04_start": "2017-04-09T15:00:19.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 4.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 700.0, "D12_harvst_amount": 6.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 4.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 2.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 50.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 80.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 700.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 700.0, "D12_harvst_amount": 80.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado caprino", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "goats", "poultry"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["radio", "cow_plough", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Aug", "Sept", "Oct", "Nov"], "A11_years_farm": 12.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "71", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 24, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 21, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 4.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 696.0, "gps:Longitude": 33.48332601, "E23_memb_assoc": "yes", "E19_period_use": 1.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0512715\nLongetude: 7905421\nAltitude: 702.4m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "limit_portion", "reduce_meals", "restrict_adults", "borrow_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11220603, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "6"}, {"C06_rooms": 8, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 18, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 5, "F_curr_liv": "pigs"}], "_note2": null, "instanceID": "uuid:f6d04b41-b539-4e00-868a-0f62b427587d", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-09T05:27:41.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-16", "B11_remittance_money": "no", "A04_start": "2017-04-09T05:16:06.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 300.0, "D12_harvst_amount": 10.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Compra vestu\u00c3\u00a1rios", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu uma casa", "F03_year": 2010, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["pigs"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Aug", "Sept", "Oct"], "A11_years_farm": 10.0, "F09_du_labour": "no", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "127", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 28, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 21, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 8.0, "E20_exper_other": null, "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 676.0, "gps:Longitude": 33.48341359, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 9512764\nLongetude: 7907961\nAltitude: 728m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["borrow_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11221396, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "4"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 25, "E_yes_group_count": "1", "F_liv": [{"F11_no_owned": 10, "F_curr_liv": "oxen"}, {"F11_no_owned": 26, "F_curr_liv": "cows"}, {"F11_no_owned": 2, "F_curr_liv": "goats"}, {"F11_no_owned": 3, "F_curr_liv": "sheep"}, {"F11_no_owned": 5, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:429d279a-a519-4dcc-9f64-4673b0fd5d53", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [{"B13_remitter_location_village": "Maputo", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "maputo", "B14_remitter_location_district": "Maputo", "B12_remittance_money_type": "Negociante"}], "E18_months_no_water": ["Nov"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios, utens\u00c3\u00adlios dom\u00c3\u00a9sticos e pagamento de despesas escolares dos filhos", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T05:43:51.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize", "vegetable", "peanut"], "E09_irr_manager": ["other_non_rel"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 1}], "A01_interview_date": "2016-11-23", "B11_remittance_money": "yes", "A04_start": "2017-04-09T05:27:46.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "vegetable", "peanut"], "D01_curr_plot": 1, "D02_total_plot": 8.0, "D03_unit_land": "hactare", "D_crops_count": "3", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 2800.0, "D12_harvst_amount": 30.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["other_non_rel"], "D10_who_own": "du", "D06_mnth_harvest": "Jan", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 150.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 150.0, "D17_cost_seed": 160.0, "D12_harvst_amount": 4.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 250.0}], "D_curr_crop": "peanut", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Compra de mobili\u00c3\u00a1rio da casa", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Compra de utens\u00c3\u00adlios dom\u00c3\u00a9sticos", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "5", "F10_liv_owned": ["oxen", "cows", "goats", "sheep", "poultry"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_cart", "car", "lorry", "motorcyle", "bicycle", "television", "sterio", "cow_plough", "solar_panel", "solar_torch", "electricity", "table", "sofa_set", "mobile_phone", "fridge"], "F06_crops_contr": "abt_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Oct", "Nov"], "A11_years_farm": 2.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "133", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 25, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 43, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["salar_job"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["salar_job"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 2099.999, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 0.0, "gps:Longitude": 33.4777622, "E23_memb_assoc": "no", "E19_period_use": 2.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0512450\nLongetude: 7910525\nAltitude: 719m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.1041288, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 16, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 8, "F_curr_liv": "cows"}, {"F11_no_owned": 4, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:59738c17-1cda-49ee-a563-acd76f6bc487", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios e produtos de higiene e produtos para a sua barraca.", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T06:16:11.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes", "vegetable", "green_beans"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}], "A01_interview_date": "2016-11-24", "B11_remittance_money": "no", "A04_start": "2017-04-09T05:47:31.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "sorghum"], "D01_curr_plot": 1, "D02_total_plot": 12.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 6.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 24.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 6.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 11.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans", "tomatoes", "vegetable"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "3", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 33.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 30.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 100.0, "D12_harvst_amount": 30.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 970.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 100.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 25.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 25.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 970.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 7.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 350.0, "D12_harvst_amount": 7.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 800.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou Bicicleta", "F03_year": 2008, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado caprino", "F03_year": 2006, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2009, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2005, "F02_source_income": "Renda proveniente de venda de carv\u00c3\u00a3o vegetal"}, {"F01_item": "Comprou motorizada", "F03_year": 2011, "F02_source_income": "Renda proveniente da venda de gado bovino"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "yes", "E26_affect_conflicts": "once", "F14_items_owned": ["motorcyle", "bicycle", "radio", "sterio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 15.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "152", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 44, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["other"], "B09_interviewee_main_activities_other": "Da banho animal", "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "other"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": "Da banho os animais em Ruaca"}, {"B06_memb_education": "none", "B05_memb_age": 44, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 62, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "parent", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 11, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 702.0, "gps:Longitude": 33.48344669, "E23_memb_assoc": "yes", "E19_period_use": 16.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0512597\nLongetude: 7909952\nAltitude: 717.7m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.1121034, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "10"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 41, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 5, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:7e7961ca-fa1c-4567-9bfa-a02f876e4e03", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-09T06:28:48.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-24", "B11_remittance_money": "no", "A04_start": "2017-04-09T06:16:49.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 25.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [], "F_liv_count": "1", "F10_liv_owned": ["goats"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": null, "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov"], "A11_years_farm": 41.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "153", "_members": [{"B06_memb_education": "none", "B05_memb_age": 65, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 44, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 41, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 12.0, "E20_exper_other": null, "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 691.0, "gps:Longitude": 33.48345393, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Esta fam\u00c3\u00adlia para suprir as suas despesas tem feito ganho-ganho nas machambas dos vizinhos.\n\nPonto geogr\u00c3\u00a1fico \nLatitude: 0512642\nLongetude: 7910166\nAltitude: 725.5m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "limit_portion", "reduce_meals", "no_food", "day_night_hungry"], "F05_money_source_other": null, "gps:Latitude": -19.11223572, "E_no_group": [{"E04_res_water_field": "no_need", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 4, "E_yes_group_count": null, "F_liv": [], "_note2": null, "instanceID": "uuid:77b3021b-a9d6-4276-aaeb-5bfcfd413852", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-09T06:48:01.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-24", "B11_remittance_money": "no", "A04_start": "2017-04-09T06:35:16.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["other"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": "Anan\u00c3\u00a1s", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "other", "D19_pesticide_other": null, "D25_price": 15.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 500.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 500.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": "Unidades", "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou terra para constru\u00c3\u00a7\u00c3\u00a3o de habita\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu sua morada", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["electricity"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Sept", "Oct", "Nov", "Dec"], "A11_years_farm": 5.0, "F09_du_labour": "no", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "155", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 36, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 25, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 13.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 713.0, "gps:Longitude": 33.48342364, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0511036\nLongetude: 7908797\nAltitude: 632.9m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["limit_variety", "reduce_meals", "borrow_food", "go_forest", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11220708, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "4"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 79, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 1, "F_curr_liv": "cows"}, {"F11_no_owned": 3, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:2186e2ec-f65a-47cc-9bc1-a0f36dd9591c", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Oct", "Nov"], "F07_use_income": "Faz despesas da casa, tais como compra de produtos aliment\u00c3\u00adcios e de higiene.", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T07:14:16.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["beans", "vegetable"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 3}], "A01_interview_date": "2016-11-25", "B11_remittance_money": "no", "A04_start": "2017-04-09T06:54:49.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 3, "D02_total_plot": 4.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 924.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 14.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 19.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans", "vegetable"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": 25.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 466.0, "D12_harvst_amount": 1.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 3, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu a sua moradia, comprou cabe\u00c3\u00a7as de gado caprino", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2000, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "frequently", "F14_items_owned": ["radio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 20.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "yes", "A03_quest_no": "178", "_members": [{"B06_memb_education": "pri_2", "B05_memb_age": 79, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 35, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 50.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 714.0, "gps:Longitude": 33.48355586, "E23_memb_assoc": "yes", "E19_period_use": 20.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0514617\nLongetude: 7911305\nAltitude: 735.0m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.1123581, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 13, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 1, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:87998c33-c8d2-49ec-9dae-c123735957ec", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Oct", "Nov"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios \nCompra produtos de higiene", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T08:22:34.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes", "onion", "vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}], "A01_interview_date": "2016-11-25", "B11_remittance_money": "no", "A04_start": "2017-04-09T07:59:49.000Z", "D_plots": [{"D04_crops_harvsted": ["tomatoes", "onion", "vegetable"], "D01_curr_plot": 1, "D02_total_plot": 2.5, "D03_unit_land": "hactare", "D_crops_count": "3", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Sept", "D08_land_planted": 1.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 17.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 525.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 400.0, "D12_harvst_amount": 17.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer", "own_manure"], "D14_cost_fert": 800.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 450.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 16.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 525.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1680.0, "D12_harvst_amount": 16.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer", "own_manure"], "D14_cost_fert": 1600.0}], "D_curr_crop": "onion", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Oct", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 300.0, "D12_harvst_amount": 1.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer", "own_manure"], "D14_cost_fert": 1600.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 4.8, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 4.8, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou planta", "F03_year": 2006, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou motorizada", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["motorcyle", "television", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Nov"], "A11_years_farm": 11.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "177", "_members": [{"B06_memb_education": "pri_1", "B05_memb_age": 47, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 40, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 22, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "no", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 713.0, "gps:Longitude": 33.48349493, "E23_memb_assoc": "no", "E19_period_use": 11.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513690\nLongetude: 790812\nAltitude: 755m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.1120537, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "10"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 50, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 4, "F_curr_liv": "cows"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:ece89122-ea99-4378-b67e-a170127ec4e6", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov"], "F07_use_income": "Gasta com as despesas diarias da casa", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T08:42:02.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes", "vegetable"], "E09_irr_manager": ["child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}], "A01_interview_date": "2016-11-25", "B11_remittance_money": "no", "A04_start": "2017-04-09T08:23:05.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "sorghum"], "D01_curr_plot": 1, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 6.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 6.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["child"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.3, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 450.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 45.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 500.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 45.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino e caprino", "F03_year": 2002, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou aves", "F03_year": 2009, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_plough", "solar_panel"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov"], "A11_years_farm": 4.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "180", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 50, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["comm_farming", "small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 44, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["housework", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 4.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 701.0, "gps:Longitude": 33.48346659, "E23_memb_assoc": "no", "E19_period_use": 4.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \nLatitude: 0515370\nLongetude: 7911583\nAltitude: 790", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "reduce_meals", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11204921, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 25, "E_yes_group_count": "1", "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 6, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:bf373763-dca5-4906-901b-d1bacb4f0286", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 4, "_remitters": [], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios \nCompra vestu\u00c3\u00a1rios \nCompra insumos agr\u00c3\u00adcolas", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T09:07:48.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize", "tomatoes", "vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 1}], "A01_interview_date": "2016-11-25", "B11_remittance_money": "no", "A04_start": "2017-04-09T08:43:08.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "tomatoes", "vegetable"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "3", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Mar", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 5.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 20.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1000.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1220.0, "D12_harvst_amount": 20.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1200.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 880.0, "D12_harvst_amount": 5.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu uma casa", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Pagou despesas escolares dos filhos", "F03_year": 2012, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou chapas de cobertura", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Compra de insumos agr\u00c3\u00adcolas e terra para aumentar a produ\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2010, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 11, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_cart", "motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 20.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "181", "_members": [{"B06_memb_education": "pri_1", "B05_memb_age": 39, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 21, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_business", "na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 19, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 60, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "mabatipitched", "gps:Altitude": 701.0, "gps:Longitude": 33.48351086, "E23_memb_assoc": "yes", "E19_period_use": 23.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0514863\nLongetude: 7907129\nAltitude: 877m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11207501, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "11"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 21, "E_yes_group_count": "1", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:394033e8-a6e2-4e39-bfac-458753a1ed78", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra vestu\u00c3\u00a1rios para a fam\u00c3\u00adlia \nCompra produtos aliment\u00c3\u00adcios \nCompra insumos agr\u00c3\u00adcolas", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T09:34:12.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize", "beans", "pumpkins", "bananas", "tomatoes", "vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 1}], "A01_interview_date": "2016-11-25", "B11_remittance_money": "no", "A04_start": "2017-04-09T09:08:04.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "beans", "bananas", "tomatoes", "vegetable"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "5", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 7.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Feb", "D08_land_planted": 0.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 300.0, "D12_harvst_amount": 2.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1200.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.5, "D11_harvst_unit": "other", "D19_pesticide_other": null, "D25_price": 75.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 25.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 25.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": "Unidades", "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "bananas", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 250.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 8.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 8.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 920.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 450.0, "D12_harvst_amount": 2.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou chapas de zinco para cobertura da sua casa", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino para lobolo", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou uma machamba", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["solar_panel"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Feb", "Nov", "Dec"], "A11_years_farm": 20.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "182", "_members": [{"B06_memb_education": "pri_2", "B05_memb_age": 74, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 58, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 21, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na", "other"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": "Estudante"}, {"B06_memb_education": "pri_7", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 4.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "mabatipitched", "gps:Altitude": 694.0, "gps:Longitude": 33.48345447, "E23_memb_assoc": "no", "E19_period_use": 20.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0514625\nLongetude: 7907812\nAltitude: 897m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11204151, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward1", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 24, "E_yes_group_count": "1", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:268bfd97-991c-473f-bd51-bc80676c65c6", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Faz despesas da casa", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T15:46:14.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize", "beans", "tomatoes", "vegetable"], "E09_irr_manager": ["du_head", "spouse", "child", "parent"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 1}], "A01_interview_date": "2016-11-28", "B11_remittance_money": "no", "A04_start": "2017-04-09T15:20:26.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "beans", "tomatoes", "vegetable"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "4", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Mar", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 30.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "parent"], "D10_who_own": "du", "D06_mnth_harvest": "Feb", "D08_land_planted": 0.2, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1400.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "parent"], "D10_who_own": "du", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 150.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 150.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "parent"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 0.2, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 880.0, "D12_harvst_amount": 10.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu uma casa", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino bovino", "F03_year": 2003, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_plough", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 24.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "186", "_members": [{"B06_memb_education": "pri_2", "B05_memb_age": 60, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 80, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "parent", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Irm\u00c3\u00a3o", "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 19, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 690.0, "gps:Longitude": 33.48346266, "E23_memb_assoc": "no", "E19_period_use": 21.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \nLatitude: 0514053\nLongetude: 7907939\nAltitude: 786", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11232028, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 43, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 5, "F_curr_liv": "cows"}, {"F11_no_owned": 3, "F_curr_liv": "goats"}, {"F11_no_owned": 6, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:0a42c9ee-a840-4dda-8123-15c1bede5dfc", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra vestu\u00c3\u00a1rios \nCompra insumos agr\u00c3\u00adcolas \nPaga despesas escolares para os filhos", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T16:12:46.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["beans", "tomatoes", "vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}], "A01_interview_date": "2016-11-28", "B11_remittance_money": "no", "A04_start": "2017-04-09T15:48:14.000Z", "D_plots": [{"D04_crops_harvsted": ["beans", "tomatoes", "vegetable"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "3", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Feb", "D08_land_planted": 0.2, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1400.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 6.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 920.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 7.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1200.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 400.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 200.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 200.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1200.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Jan", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 8.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 8.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Mar", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 35.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Compra de materiais de constru\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou painel solar", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou bicicleta", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "poultry"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_cart", "motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_panel", "solar_torch", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 1.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "187", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 43, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 60, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["comm_farming"], "B03_relationship_du_other": "Esposo", "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 24, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 13.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 691.0, "gps:Longitude": 33.48349248, "E23_memb_assoc": "yes", "E19_period_use": 24.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0514559\nLongetude: 7907153\nAltitude: 874m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.1122345, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 48, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 13, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:2c132929-9c8f-450a-81ff-367360ce2c19", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra de produtos aliment\u00c3\u00adcios \nPagamento de despesas escolares e de casa", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T16:35:24.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["beans"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 3}], "A01_interview_date": "2016-11-28", "B11_remittance_money": "no", "A04_start": "2017-04-09T16:13:19.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 900.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 7.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 480.0, "D12_harvst_amount": 17.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.5, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 80.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 120.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1200.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 170.0, "D12_harvst_amount": 120.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Mar", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 9.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou painel solar \nComprou bicicleta", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu uma casa para si", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "poultry"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_cart", "bicycle", "radio", "cow_plough", "solar_torch"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Sept", "Oct", "Nov"], "A11_years_farm": 7.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "195", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 48, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 706.0, "gps:Longitude": 33.48342104, "E23_memb_assoc": "no", "E19_period_use": 5.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0514331\nLongetude: 7907286\nAltitude: 832m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11220559, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "5"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 49, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 4, "F_curr_liv": "cows"}, {"F11_no_owned": 2, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:44e427d1-a448-4bf2-b529-7d67b2266c06", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Oct", "Nov"], "F07_use_income": "Compra de produtos da primeira necessidade \nCompra de produtos de higiene \nPagamento de despesas escolares dos filhos", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T18:31:40.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes", "vegetable"], "E09_irr_manager": ["du_head", "child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}], "A01_interview_date": "2016-11-28", "B11_remittance_money": "no", "A04_start": "2017-04-09T18:00:41.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes", "vegetable"], "D01_curr_plot": 2, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 0.3, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 700.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 11.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 11.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 410.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Oct", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 410.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2005, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2006, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu uma casa", "F03_year": 2013, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["radio", "cow_plough", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 21.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "196", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 49, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 21, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 694.0, "gps:Longitude": 33.48340018, "E23_memb_assoc": "yes", "E19_period_use": 21.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \nLatitude: 0513866\nLongetude: 7908696\nAltitude: 733m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11220357, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 19, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 4, "F_curr_liv": "oxen"}, {"F11_no_owned": 9, "F_curr_liv": "cows"}, {"F11_no_owned": 2, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:85c99fd2-775f-40c9-8654-68223f59d091", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [{"B13_remitter_location_village": "Macate", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "manica", "B14_remitter_location_district": "Manica", "B12_remittance_money_type": "Pedreiro"}], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov"], "F07_use_income": "Paga despesas de casa\nCompra produtos para a sua barraca", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T19:14:52.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["beans", "tomatoes", "vegetable"], "E09_irr_manager": ["du_head", "child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 2}], "A01_interview_date": "2016-11-28", "B11_remittance_money": "yes", "A04_start": "2017-04-09T18:32:09.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 6.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 4.0, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}, {"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans", "tomatoes", "vegetable"], "D01_curr_plot": null, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "3", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Feb", "D08_land_planted": 0.5, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 54.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 5.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 1000.0, "D17_cost_seed": 250.0, "D12_harvst_amount": 15.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Feb", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 27.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 27.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Jan", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 300.0, "D12_harvst_amount": 2.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu uma barraca\nComprou trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu uma casa para a fam\u00c3\u00adlia", "F03_year": 2008, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado caprino", "F03_year": 2016, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "yes", "E26_affect_conflicts": "more_once", "F14_items_owned": ["bicycle", "television", "radio", "cow_plough", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Nov"], "A11_years_farm": 11.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "197", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 25, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 22, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Prima", "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Prima", "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 714.0, "gps:Longitude": 33.4833828, "E23_memb_assoc": "no", "E19_period_use": 11.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513774\nLongetude: 7908629\nAltitude: 765m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals"], "F05_money_source_other": null, "gps:Latitude": -19.11218716, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 49, "E_yes_group_count": "2", "F_liv": [], "_note2": null, "instanceID": "uuid:28c64954-739c-444c-a6e0-355878e471c8", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Jan", "Dec"], "F07_use_income": "Paga despesas da casa", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T19:27:56.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}], "A01_interview_date": "2016-11-28", "B11_remittance_money": "no", "A04_start": "2017-04-09T19:15:21.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["other"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": "Madumbe", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["own_manure"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu uma casa", "F03_year": 2015, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 3, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": null, "F06_crops_contr": "less_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Nov"], "A11_years_farm": 11.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "198", "_members": [{"B06_memb_education": "none", "B05_memb_age": 51, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 63, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "artisan"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 36, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": "Empregado", "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 7.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 716.0, "gps:Longitude": 33.48338774, "E23_memb_assoc": "no", "E19_period_use": 11.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513780\nLongetude: 7908261\nAltitude: 762m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["reduce_meals", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11212338, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "3"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 6, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 4, "F_curr_liv": "oxen"}, {"F11_no_owned": 6, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:9e79a31c-3ea5-44f0-80f9-a32db49422e3", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 2, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-04-09T19:45:38.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2016-11-21", "B11_remittance_money": "no", "A04_start": "2017-04-09T19:31:47.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 6.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 200.0, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "yes", "D21_cost_labour": 200.0, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou bicicleta", "F03_year": 2004, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou aparelho sonora", "F03_year": 2004, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["bicycle", "radio", "solar_torch", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov", "Dec"], "A11_years_farm": 6.0, "F09_du_labour": "yes", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "201", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 24, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 17, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 685.0, "gps:Longitude": 33.48338504, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Este question\u00c3\u00a1rio n\u00c3\u00a3o tem cordenadas geogr\u00c3\u00a1ficas, porque usou se o tablet para tirar depois da entrevista e nao se registou.", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["borrow_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11217226, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "4"}, {"C06_rooms": 4, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 12, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 4, "F_curr_liv": "oxen"}, {"F11_no_owned": 5, "F_curr_liv": "cows"}, {"F11_no_owned": 3, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:06d39051-38ef-4757-b68b-3327b1f16b9d", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov", "Dec"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios \nCompra vestu\u00c3\u00a1rios \nPaga despesas escolares dos filhos", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-09T20:08:15.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["bananas", "tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": 1000.0, "E15_duration": "month", "E07_bring": "yes", "E14_access": "rented", "E11_water_fields": "canal_gravity", "E10_water_source": "canal", "E06_plot_no": 1}], "A01_interview_date": "2016-11-17", "B11_remittance_money": "no", "A04_start": "2017-04-09T19:48:09.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 2.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 18.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 3, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 120.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 600.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 120.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1450.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2002, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu uma casa", "F03_year": 2008, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou charua", "F03_year": 2008, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Comprou pulverizador", "F03_year": 2009, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 12, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_cart", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Feb", "Mar", "Oct", "Nov", "Dec"], "A11_years_farm": 12.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "202", "_members": [{"B06_memb_education": "pri_2", "B05_memb_age": 41, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 38, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 39, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 17, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 19, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 19, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 705.0, "gps:Longitude": 33.48340466, "E23_memb_assoc": "yes", "E19_period_use": 9.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Este question\u00c3\u00a1rio ja havia sido lan\u00c3\u00a7ado no ODK e as cordenadas geogr\u00c3\u00a1ficas nao foram registadas no papel.", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "restrict_adults", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11218863, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "12"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 24, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 5, "F_curr_liv": "cows"}, {"F11_no_owned": 4, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:c4a2c982-244e-45a5-aa4b-71fa53f99e18", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov"], "F07_use_income": "Compra de insumos agr\u00c3\u00adcolas e produtos alimentares", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-26T16:13:33.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2017-04-26", "B11_remittance_money": "no", "A04_start": "2017-04-26T15:46:24.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "July", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 3, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 1.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 250.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 117.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 800.0, "D12_harvst_amount": 117.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2006, "F02_source_income": "Renda proveniente da agricultura irrigada"}, {"F01_item": "Comprou cabe\u00c3\u00a7as de gado caprino", "F03_year": 2007, "F02_source_income": "Renda proveniente da agricultura irrigada"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["bicycle", "radio", "cow_plough"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Aug", "Sept", "Oct", "Nov", "Dec"], "A11_years_farm": 24.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "yes", "A03_quest_no": "72", "_members": [{"B06_memb_education": "pri_1", "B05_memb_age": 60, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 52, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 716.0, "gps:Longitude": 33.48347358, "E23_memb_assoc": "yes", "E19_period_use": 4.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0512699\nLongetude: 7905380\nAltitude: 705.3m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "limit_portion", "reduce_meals", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11221489, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "6"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 9, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 6, "F_curr_liv": "cows"}, {"F11_no_owned": 12, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:ac3da862-9e6c-4962-94b6-f4c31624f207", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra produtos alimentares, de higiene", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-26T16:45:01.000Z", "C04_window_type": "no", "E21_other_meth": "yes", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "spouse", "child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["beans"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2017-04-26", "B11_remittance_money": "no", "A04_start": "2017-04-26T16:13:50.000Z", "D_plots": [{"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 1, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Mar", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 900.0, "D19_pesticide": "required_buyer", "D07_ploughing_typ": "ox", "D24_amnt_sold": 85.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 700.0, "D12_harvst_amount": 85.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 800.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 3.0, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 1250.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 18.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 900.0, "D12_harvst_amount": 38.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 3, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 3000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 6.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 800.0, "D12_harvst_amount": 6.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 800.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu sua morada", "F03_year": 2014, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou cabecas de gado bovino", "F03_year": 2012, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou uma motorizada", "F03_year": 2010, "F02_source_income": "Renda proveniente de trabalho asalariado"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_cart", "motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_panel", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Sept", "Oct"], "A11_years_farm": 6.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": ["cheaper", "less_work", "train_outside_org"], "E24_resp_assoc": "no", "A03_quest_no": "73", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 60, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 55, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Conhado", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 13, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 4.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 714.0, "gps:Longitude": 33.48341488, "E23_memb_assoc": "yes", "E19_period_use": 4.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Os sacos sao sacos de 50kgs\n\nPonto geogr\u00c3\u00a1fico\n\nLatitude: 0512572\nLongetude: 7906701\nAltitude: 716.8m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety"], "F05_money_source_other": null, "gps:Latitude": -19.11219747, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "7"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 48, "E_yes_group_count": "6", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 4, "F_curr_liv": "cows"}, {"F11_no_owned": 6, "F_curr_liv": "goats"}, {"F11_no_owned": 30, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:4178a296-903a-4a8e-9cfa-0cd6143476e8", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "6", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 5, "_remitters": [], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Compra vestu\u00c3\u00a1rio, produtos alimentares e insumos agr\u00c3\u00adcola.", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-26T17:26:21.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 6, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 3}, {"E12_apply_water": "furrows", "E08_crops": ["cabbage"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 4}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 5}, {"E12_apply_water": "furrows", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 6}], "A01_interview_date": "2017-04-26", "B11_remittance_money": "no", "A04_start": "2017-04-26T16:45:28.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 5.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 210.0, "D12_harvst_amount": 40.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["sorghum"], "D01_curr_plot": 2, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "July", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["peanut"], "D01_curr_plot": 3, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1500.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "peanut", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["cabbage"], "D01_curr_plot": 4, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.5, "D11_harvst_unit": "other", "D19_pesticide_other": null, "D25_price": 30.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 1000.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1600.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 1000.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": "Unidades", "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1200.0}], "D_curr_crop": "cabbage", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 5, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 1200.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 1200.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1200.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 6, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 880.0, "D12_harvst_amount": 4.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1200.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado", "F03_year": 1997, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2001, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Construiu uma habita\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2001, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Pagamento de despesas escolares", "F03_year": 2003, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "poultry"], "B_no_membrs": 17, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["bicycle", "radio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 22.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "yes", "A03_quest_no": "76", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 48, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "other"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": "Venda de cabecas de gado bovino"}, {"B06_memb_education": "pri_3", "B05_memb_age": 38, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 35, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 11, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 13, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 14, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 15, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 16, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 17, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatipitched", "gps:Altitude": 702.0, "gps:Longitude": 33.48341762, "E23_memb_assoc": "yes", "E19_period_use": 22.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0513829\nLongetude: 7911004\nAltitude: 71.8m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11220193, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "17"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 22, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:a1e9df00-c8ae-411c-931c-c7df898c68d0", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct"], "F07_use_income": "Compra produtos alimentares", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-27T12:56:42.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["maize", "other"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": "Inhame", "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-04-27", "B11_remittance_money": "no", "A04_start": "2017-04-27T12:27:31.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 5.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 120.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 8.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize", "other"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": "Inhame", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 120.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou chapas de zinco", "F03_year": 2014, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou aparelho sonora", "F03_year": 2005, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["radio", "cow_plough", "solar_torch"], "F06_crops_contr": "abt_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Aug", "Sept", "Oct"], "A11_years_farm": 17.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "83", "_members": [{"B06_memb_education": "none", "B05_memb_age": 60, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 54, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_4", "B05_memb_age": 40, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["artisan"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 33.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 693.0, "gps:Longitude": 33.48349754, "E23_memb_assoc": "yes", "E19_period_use": 17.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Latitude: 0512467\nLongetude: 7906174\nAltitude: 70.0m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["borrow_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11231638, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 40, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:4d0f472b-f8ae-4026-87c9-6b5be14b0a70", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Paga despesas de escolas e produtos alimentares", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-27T13:23:06.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["beans", "tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2017-04-27", "B11_remittance_money": "no", "A04_start": "2017-04-27T12:58:02.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 13.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1700.0}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 2, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Nov", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1200.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 25.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 30.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1700.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 1600.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 20.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1700.0}], "D_curr_crop": null, "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": null, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 30.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 30.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1700.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabecas de gado", "F03_year": 2005, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou chapas de zinco", "F03_year": 2015, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["radio", "cow_plough"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov"], "A11_years_farm": 12.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "85", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 40, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 25, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 697.0, "gps:Longitude": 33.48358508, "E23_memb_assoc": "no", "E19_period_use": 12.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geografico\n\nLatitude: 0513771\nLongetude: 7905618\nAltitude: 77.8m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11235114, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "7"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 10, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:b3b309c6-f234-4830-8b30-87d26a17ee1d", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Compra produtos de genero aliment\u00c3\u00adcios, de higiene e utens\u00c3\u00adlios dom\u00c3\u00a9sticos", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-27T16:41:41.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "basin", "E08_crops": ["maize", "beans", "vegetable", "other"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": "Inhame", "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "bucket", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-04-27", "B11_remittance_money": "no", "A04_start": "2017-04-27T16:11:23.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1250.0, "D12_harvst_amount": 0.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize", "beans", "vegetable", "other"], "D01_curr_plot": 2, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "4", "D04_crops_harvsted_other": "Inhame", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 2500.0, "D12_harvst_amount": 0.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 160.0, "D12_harvst_amount": 1.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 150.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2003, "F02_source_income": "Renda proveniente de actividades de garimpo"}, {"F01_item": "Comprou trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2010, "F02_source_income": "Venda de carv\u00c3\u00a3o vegetal"}, {"F01_item": "Comprou terreno na vila de Messica e outros arredores", "F03_year": 2012, "F02_source_income": "Renda proveniente da venda de carvao e agricultura irrigada"}, {"F01_item": "Construiu a sua moradia", "F03_year": 2013, "F02_source_income": "Renda proveniente de venda de carv\u00c3\u00a3o vegetal e agricultura irrigada"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["bicycle", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "less_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov"], "A11_years_farm": 10.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "89", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 26, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 33, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "other"], "B09_interviewee_main_activities_other": "Fabrico de carv\u00c3\u00a3o", "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 3, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 13.0, "E20_exper_other": "no", "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 710.0, "gps:Longitude": 33.48348329, "E23_memb_assoc": "no", "E19_period_use": 10.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0511306\nLongetude: 7908926\nAltitude: 690.2m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "go_forest", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11231667, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 4, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:3c174acd-e431-4523-9ad6-eb14cddca805", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra produtos aliment\u00c3\u00adcios e de higiene", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-27T18:11:54.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["beans", "tomatoes"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": 1500.0, "E15_duration": "year", "E07_bring": "yes", "E14_access": "rented", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-04-27", "B11_remittance_money": "no", "A04_start": "2017-04-27T16:42:02.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 4.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 400.0, "D12_harvst_amount": 18.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans", "tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": null, "D06_mnth_harvest": "Mar", "D08_land_planted": 1.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": 320.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 120.0, "D12_harvst_amount": 3.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "rentedin", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 270.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": null, "D06_mnth_harvest": "Mar", "D08_land_planted": 2.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 700.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 7.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 7.0, "D16_imprv_seed": "no", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "rentedin", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 540.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou bicicleta", "F03_year": 2015, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "1", "F10_liv_owned": ["goats"], "B_no_membrs": 3, "F13_du_look_aftr_cows": "yes", "E26_affect_conflicts": "never", "F14_items_owned": ["bicycle", "solar_torch"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Sept", "Oct", "Nov"], "A11_years_farm": 10.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "101", "_members": [{"B06_memb_education": "sec_1", "B05_memb_age": 25, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 22, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 702.0, "gps:Longitude": 33.48341767, "E23_memb_assoc": "no", "E19_period_use": 10.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0511134\nLongetude: 7908833\nAltitude: 690.5m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "restrict_adults", "borrow_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11223501, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "3"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 96, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 5, "F_curr_liv": "oxen"}, {"F11_no_owned": 10, "F_curr_liv": "cows"}, {"F11_no_owned": 10, "F_curr_liv": "goats"}, {"F11_no_owned": 2, "F_curr_liv": "pigs"}, {"F11_no_owned": 28, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:e9d79844-ef14-493b-bbd6-d13691cc660e", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov"], "F07_use_income": "Compra produtos de alimenta\u00c3\u00a7\u00c3\u00a3o e d3 higiene", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-27T18:09:45.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "basin", "E08_crops": ["beans", "bananas", "vegetable", "other"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": "Inhame", "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-04-27", "B11_remittance_money": "no", "A04_start": "2017-04-27T17:38:53.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "sorghum"], "D01_curr_plot": 2, "D02_total_plot": 12.5, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 8.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 4.0, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans", "bananas", "vegetable", "other"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "4", "D04_crops_harvsted_other": "Inhame", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 0.25, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 320.0, "D12_harvst_amount": 10.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.25, "D11_harvst_unit": "other", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 15.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": "Unidades", "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "bananas", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.25, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 50.0, "D12_harvst_amount": 5.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.25, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou de gado bovino", "F03_year": 2000, "F02_source_income": "Renda proveniente da agricultura irrigada"}, {"F01_item": "Construiu sua habita\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2003, "F02_source_income": "Renda proveniente da agricultura irrigada"}, {"F01_item": "Comprou carro\u00c3\u00a7a de boi", "F03_year": 2007, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "5", "F10_liv_owned": ["oxen", "cows", "goats", "pigs", "poultry"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_cart", "cow_plough", "solar_panel", "sofa_set", "mobile_phone"], "F06_crops_contr": "less_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Feb", "Dec"], "A11_years_farm": 50.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "103", "_members": [{"B06_memb_education": "na", "B05_memb_age": 96, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 80, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 0, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 712.0, "gps:Longitude": 33.48337002, "E23_memb_assoc": "no", "E19_period_use": 10.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0513721\nLongetude: 7909375\nAltitude: 774.1m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["go_forest"], "F05_money_source_other": null, "gps:Latitude": -19.11219049, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "6"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 15, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 2, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:76206b0b-af74-4344-b24f-81e839f0d7b0", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct"], "F07_use_income": "Compra produtos alimentares, de higiene e pagamento das despesas escolares", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-28T06:52:04.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes", "onion"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-04-28", "B11_remittance_money": "no", "A04_start": "2017-04-28T06:27:07.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["parent"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1200.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 7.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 42.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes", "onion"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["parent"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 50.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 35.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1500.0, "D12_harvst_amount": 37.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 4500.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["parent"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.5, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 15.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 60.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 800.0, "D12_harvst_amount": 60.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1900.0}], "D_curr_crop": "onion", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cadeiras de sofa, construiu a sua casa", "F03_year": 2015, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "2", "F10_liv_owned": ["cows", "goats"], "B_no_membrs": 12, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "frequently", "F14_items_owned": ["cow_plough", "table", "sofa_set", "mobile_phone"], "F06_crops_contr": "less_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Feb"], "A11_years_farm": 15.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "yes", "A03_quest_no": "102", "_members": [{"B06_memb_education": "sec_1", "B05_memb_age": 42, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 37, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 11, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 691.0, "gps:Longitude": 33.40388996, "E23_memb_assoc": "yes", "E19_period_use": 2.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto Geogr\u00c3\u00a1fico \n\nLatitude: 0513536\nLongetude: 799352\nAltitude: 766m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.04413333, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "12"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 48, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 1, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:da3fa7cc-5ce9-44fd-9a78-b8982b607515", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept"], "F07_use_income": "Compra produtos alimentares, de higiene e paga despesas escolares.", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-28T07:31:38.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["maize", "beans", "tomatoes", "onion"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-04-28", "B11_remittance_money": "no", "A04_start": "2017-04-28T07:09:39.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 12.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize", "beans", "tomatoes", "onion"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "4", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Mar", "D08_land_planted": 0.25, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Feb", "D08_land_planted": 0.25, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 400.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 900.0, "D12_harvst_amount": 3.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1200.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 0.25, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 14.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1000.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 15.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1220.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 0.25, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 30.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 50.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 450.0, "D12_harvst_amount": 50.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1220.0}], "D_curr_crop": "onion", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado", "F03_year": 2003, "F02_source_income": "Renda proveniente da agricultura irrigada"}, {"F01_item": "Reabilitou a sua casa", "F03_year": 2015, "F02_source_income": "Renda proveniente da agricultura irrigada"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_plough"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Aug", "Sept", "Oct"], "A11_years_farm": 20.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "78", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 48, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 27, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": "Trabalhador", "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatipitched", "gps:Altitude": 723.0, "gps:Longitude": 33.40398184, "E23_memb_assoc": "no", "E19_period_use": 20.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0513110\nLongetude: 7910185\nAltitude: 729m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.04402591, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "6"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 12, "E_yes_group_count": "1", "F_liv": [], "_note2": null, "instanceID": "uuid:a85df6df-0336-46fa-a9f4-522bf6f8b438", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Melhorar dieta alimentar \nComprar vestu\u00c3\u00a1rios\nComprar produtos de higiene", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-28T09:25:51.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["maize", "sorghum", "tomatoes", "onion", "vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}], "A01_interview_date": "2017-04-28", "B11_remittance_money": "no", "A04_start": "2017-04-28T09:01:47.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "sorghum", "tomatoes", "onion", "vegetable"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "5", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 400.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 450.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 50.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1200.0, "D12_harvst_amount": 50.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 30.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1000.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 450.0, "D12_harvst_amount": 30.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "onion", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "July", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 60.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1720.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1680.0, "D12_harvst_amount": 60.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu sua casa", "F03_year": 2015, "F02_source_income": "Renda proviniente da agricultura irrigada"}, {"F01_item": "Despesas escolares dos filhos", "F03_year": 2006, "F02_source_income": "Renda proveniente da agricultura irrigada"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_cart", "bicycle", "radio", "cow_plough", "solar_panel", "solar_torch"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["none"], "A11_years_farm": 12.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "80", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 54, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["artisan"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 19, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 6.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatipitched", "gps:Altitude": 689.0, "gps:Longitude": 33.40390046, "E23_memb_assoc": "no", "E19_period_use": 12.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0512614\nLongetude: 7910890\nAltitude: 711m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.04415001, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 52, "E_yes_group_count": "4", "F_liv": [{"F11_no_owned": 15, "F_curr_liv": "oxen"}, {"F11_no_owned": 17, "F_curr_liv": "cows"}, {"F11_no_owned": 41, "F_curr_liv": "goats"}, {"F11_no_owned": 3, "F_curr_liv": "pigs"}], "_note2": null, "instanceID": "uuid:bb2bb365-7d7d-4fe9-9353-b21269676119", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "4", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 4, "_remitters": [], "E18_months_no_water": ["Aug", "Sept"], "F07_use_income": "Compra produtos alimentares, de higiene e pagamento das despesas escolares.", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-28T15:18:10.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 4, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["beans", "tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["beans", "tomatoes", "vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes", "baby_corn"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 4}], "A01_interview_date": "2017-04-28", "B11_remittance_money": "no", "A04_start": "2017-04-28T14:25:13.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "sorghum"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "June", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "July", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 7.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans", "tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "Oct", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 4800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 16.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 500.0, "D12_harvst_amount": 16.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans", "tomatoes", "vegetable"], "D01_curr_plot": 3, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "3", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "Oct", "D08_land_planted": 0.3, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 500.0, "D12_harvst_amount": 3.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "Mar", "D08_land_planted": 0.3, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 24.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 500.0, "D12_harvst_amount": 24.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.3, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 8.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 800.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 310.0, "D12_harvst_amount": 8.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes", "baby_corn"], "D01_curr_plot": 4, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 150.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 180.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1500.0, "D12_harvst_amount": 180.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["own_manure"], "D14_cost_fert": null}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.25, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 75.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 750.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 750.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}, {"D26_who_sell_harv": ["du_head"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.25, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 75.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 900.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 900.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "baby_corn", "D_repeat_times_count": "2", "D05_times": 2}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado caprino", "F03_year": 2005, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou gado bovino", "F03_year": 2000, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou carro\u00c3\u00a7a de trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2011, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "pigs"], "B_no_membrs": 14, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_cart", "bicycle", "cow_plough"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Feb", "Dec"], "A11_years_farm": 35.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "no", "A03_quest_no": "104", "_members": [{"B06_memb_education": "pri_3", "B05_memb_age": 52, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 45, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm", "small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 35, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm", "small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 19, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 11, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 13, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinha", "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 14, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 711.0, "gps:Longitude": 33.4833734, "E23_memb_assoc": "yes", "E19_period_use": 16.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0513630\nLongetude: 790935\nAltitude: 671.5m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["go_forest", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11225606, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "14"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 40, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 6, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:af0904ee-4fdb-4090-973f-599c81ddf022", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov"], "F07_use_income": "Compra de produtos alimentares, de higiene, utens\u00c3\u00adlios dom\u00c3\u00a9sticos e pagamento de despesas escolares", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-28T15:58:10.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "flood", "E08_crops": ["tomatoes", "vegetable"], "E09_irr_manager": ["child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-04-28", "B11_remittance_money": "no", "A04_start": "2017-04-28T15:32:38.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes", "vegetable"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["parent"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 50.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 50.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1000.0, "D12_harvst_amount": 50.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 4500.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["parent"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 300.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 5.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 300.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 500.0, "D12_harvst_amount": 5.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1500.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino e uma motorizada", "F03_year": 2016, "F02_source_income": "Renda proveniente da agricultura irrigada"}], "F_liv_count": "2", "F10_liv_owned": ["cows", "poultry"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "yes", "E26_affect_conflicts": "frequently", "F14_items_owned": ["motorcyle", "radio", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Feb", "Dec"], "A11_years_farm": 20.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "yes", "A03_quest_no": "105", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 40, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_4", "B05_memb_age": 37, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 735.0, "gps:Longitude": 33.48350526, "E23_memb_assoc": "yes", "E19_period_use": 1.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0513553\nLongetude: 7909671\nAltitude: 751.0m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11221203, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "6"}, {"C06_rooms": 5, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 22, "E_yes_group_count": "5", "F_liv": [{"F11_no_owned": 4, "F_curr_liv": "oxen"}, {"F11_no_owned": 1, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:468797c1-4a65-4f35-9c83-e28ce46972a2", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "5", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 4, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov"], "F07_use_income": "Compra produtos alimentares e de higiene.\nCompra vestu\u00c3\u00a1rios e paga despesas escolares", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-04-30T06:47:01.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 5, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["baby_corn"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["piri_piri"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 3}, {"E12_apply_water": "furrows", "E08_crops": ["cabbage"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 4}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 5}], "A01_interview_date": "2017-04-30", "B11_remittance_money": "no", "A04_start": "2017-04-30T05:51:18.000Z", "D_plots": [{"D04_crops_harvsted": ["baby_corn"], "D01_curr_plot": 1, "D02_total_plot": 22.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Oct", "D08_land_planted": 17.0, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 5.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 108000.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 108.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "baby_corn", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["piri_piri"], "D01_curr_plot": 2, "D02_total_plot": 16.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 14.0, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 25.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 32000.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 49000.0, "D12_harvst_amount": 32000.0, "D16_imprv_seed": "yes", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1.0}], "D_curr_crop": "piri_piri", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 3, "D02_total_plot": 4.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 54.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["cabbage"], "D01_curr_plot": 4, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "other", "D19_pesticide_other": null, "D25_price": 20.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 1050.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 850.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1050.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": "Unidades", "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 2400.0}, {"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.5, "D11_harvst_unit": "other", "D19_pesticide_other": null, "D25_price": 20.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 1050.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 850.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1050.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": "Unidades", "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "cabbage", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 5, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 2.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 350.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 275.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 2550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 279.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabecas de gado bevinno", "F03_year": 1996, "F02_source_income": "Renda proveniente da agricultura irrigada"}, {"F01_item": "Construiu sua casa", "F03_year": 2000, "F02_source_income": "Renda proveniente da agricultura irrigada"}, {"F01_item": "Comprou trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 1996, "F02_source_income": "Renda proveniente da agricultura irrigada"}, {"F01_item": "Comprou uma motorizada", "F03_year": 2015, "F02_source_income": "Renda proveniente da agricultura irrigada"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 15, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_cart", "motorcyle", "bicycle", "radio", "sterio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Oct", "Nov", "Dec"], "A11_years_farm": 22.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "106", "_members": [{"B06_memb_education": "sec_4", "B05_memb_age": 21, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 56, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 59, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 27, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 30, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_4", "B05_memb_age": 25, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 21, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 17, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 13, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 14, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 15, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 709.0, "gps:Longitude": 33.48340866, "E23_memb_assoc": "no", "E19_period_use": 21.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "As culturas de piripiri e de baby corn os insumos sao fornecidos pela companhia de Vanduzi e este nao conseguiu separar o custo destes do seu total rendimento.\n\nPonto geogr\u00c3\u00a1fico\n\nLatitude: 0510885\nLongetude: 7910938\nAltitude: 678m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food", "seek_government"], "F05_money_source_other": null, "gps:Latitude": -19.11220965, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "15"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 12, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 8, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:602cd3f6-4a97-49c6-80e3-bcfd5c78dfa4", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-05-03T13:37:53.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2017-05-03", "B11_remittance_money": "no", "A04_start": "2017-05-03T13:14:43.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 2.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 5.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 8.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["pigeonpeas"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "pigeonpeas", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["sorghum"], "D01_curr_plot": 3, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 3.0, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabecas de gado caprino e bovino", "F03_year": 2010, "F02_source_income": "Produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}, {"F01_item": "Construiu sua casa", "F03_year": 2012, "F02_source_income": "Produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["cow_cart", "bicycle", "radio", "cow_plough", "table"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["July", "Aug", "Sept", "Oct", "Nov"], "A11_years_farm": 12.0, "F09_du_labour": "no", "E_no_group_count": "3", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "109", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 58, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "other"], "B09_interviewee_main_activities_other": "Mec\u00c3\u00a2nico", "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "other"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": "Mec\u00c3\u00a2nico"}, {"B06_memb_education": "pri_2", "B05_memb_age": 32, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": null, "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 699.0, "gps:Longitude": 33.48338036, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 18\u00c2\u00b055'5.5147\"S\nLongetude: 33\u00c2\u00b06'23.97661\"E\nAltitude: 702m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_portion", "reduce_meals"], "F05_money_source_other": null, "gps:Latitude": -19.11222402, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["sorghum"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 2}, {"E04_res_water_field": "land_far", "E03_crops": ["pigeonpeas"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 3}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "4"}, {"C06_rooms": 3, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 22, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 4, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:e7c51ac4-24e4-475e-88e7-f85e896945e3", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov"], "F07_use_income": "Compra de vestu\u00c3\u00a1rio, produtos de alimenta\u00c3\u00a7\u00c3\u00a3o e de higiene", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-05-03T13:58:06.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["maize"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2017-05-03", "B11_remittance_money": "no", "A04_start": "2017-05-03T13:37:57.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 18.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1200.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 5.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 40.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 5.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 3, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2001, "F02_source_income": "Renda proveniente da agricultura"}, {"F01_item": "Construiu uma casa", "F03_year": 2011, "F02_source_income": "Renda proveniente de produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 6, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["bicycle", "radio", "cow_plough", "table", "mobile_phone"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 22.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "110", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 38, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 37, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 11, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 704.0, "gps:Longitude": 33.48339714, "E23_memb_assoc": "no", "E19_period_use": 22.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 18\u00c2\u00b054'22.6462\"S\nLongetude: 33\u00c2\u00b07'53.43208\"E\nAltitude: 776m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11219756, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "6"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 26, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 5, "F_curr_liv": "cows"}, {"F11_no_owned": 6, "F_curr_liv": "goats"}, {"F11_no_owned": 9, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:01210861-aba1-4268-98d0-0260e05f5155", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [{"B13_remitter_location_village": "Tete", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "tete", "B14_remitter_location_district": "Tete", "B12_remittance_money_type": "Mec\u00c3\u00a2nico"}], "E18_months_no_water": ["Sept", "Oct"], "F07_use_income": "Compra produtos agr\u00c3\u00adcolas, de alimenta\u00c3\u00a7\u00c3\u00a3o e de higiene.", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-05-03T14:27:03.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["beans", "onion"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 3}], "A01_interview_date": "2017-05-03", "B11_remittance_money": "yes", "A04_start": "2017-05-03T14:00:13.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1200.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 65.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans", "onion"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.5, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 54.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 65.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 100.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 4.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 25.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 50.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "onion", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["other"], "D01_curr_plot": 3, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": "Inhame", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou carroca de boi", "F03_year": 2005, "F02_source_income": "Renda proveniente da agricultura irrigada"}, {"F01_item": "Comprou trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2014, "F02_source_income": "Renda proveniente da agricultura irrigada"}, {"F01_item": "Comprou telem\u00c3\u00b3vel, e uma motorizada", "F03_year": 2007, "F02_source_income": "Renda proveniente da agricultura irrigada"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "poultry"], "B_no_membrs": 11, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_cart", "motorcyle", "bicycle", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "less_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 16.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "113", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 26, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "small_business"], "B03_relationship_du_other": "Conhada", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 43, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm", "small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 29, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Irm\u00c3\u00a3o", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 21, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 35, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Conhada", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 38, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Conhada", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 22, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 24, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 22, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": "Sobrinho", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 12.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 706.0, "gps:Longitude": 33.48340708, "E23_memb_assoc": "no", "E19_period_use": 2.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513522\nLongetude: 7910433\nAltitude: 732m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11222682, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "11"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 25, "E_yes_group_count": null, "F_liv": [], "_note2": null, "instanceID": "uuid:77335b2e-8812-4a35-b1e5-ca9ab626dfea", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-05-04T10:46:35.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [], "A01_interview_date": "2017-05-04", "B11_remittance_money": "no", "A04_start": "2017-05-04T10:26:35.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "other", "D06_mnth_harvest": "June", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": "Pertence aos pais da UD", "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 25.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou aves", "F03_year": 2016, "F02_source_income": "Renda proveniente de produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["radio", "solar_torch", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov", "Dec"], "A11_years_farm": 6.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "118", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 32, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 45, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": null, "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 713.0, "gps:Longitude": 33.48344178, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\nLatitude: 0512620\nLongetude: 7912705\nAltitude: 708", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "borrow_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11220573, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "no", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 14, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 1, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:02b05c68-302e-4e7a-b229-81cb1377fd29", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov"], "F07_use_income": "Compra vestu\u00c3\u00a1rios, mobili\u00c3\u00a1rio e produtos de alimenta\u00c3\u00a7\u00c3\u00a3o e de higiene.", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-05-04T11:16:05.000Z", "C04_window_type": "no", "E21_other_meth": "yes", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes", "onion", "vegetable", "pepino"], "E09_irr_manager": ["parent"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2017-05-04", "B11_remittance_money": "no", "A04_start": "2017-05-04T10:47:05.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "yes", "D21_cost_labour": 300.0, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["child"], "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 2500.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 100.0, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes", "onion", "vegetable", "cucumber"], "D01_curr_plot": 3, "D02_total_plot": 3.5, "D03_unit_land": "hactare", "D_crops_count": "4", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["parent"], "D10_who_own": "du", "D06_mnth_harvest": "Sept", "D08_land_planted": 1.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 250.0, "D19_pesticide": "required_buyer", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 180.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 600.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 3600.0, "D17_cost_seed": null, "D12_harvst_amount": 180.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 400.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["parent"], "D10_who_own": "du", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.3, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": "required_buyer", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 15.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 600.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 375.0, "D17_cost_seed": null, "D12_harvst_amount": 15.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 400.0}], "D_curr_crop": "onion", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["parent"], "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "required_buyer", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 25.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 600.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 25.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 400.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["parent"], "D10_who_own": "du", "D06_mnth_harvest": "Sept", "D08_land_planted": 1.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 120.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 30.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 300.0, "D17_cost_seed": null, "D12_harvst_amount": 30.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 400.0}], "D_curr_crop": "cucumber", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou animais", "F03_year": 2014, "F02_source_income": "Renda proveniente da agricultura irrigada"}, {"F01_item": "Comprou charua", "F03_year": 2015, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "yes", "E26_affect_conflicts": "more_once", "F14_items_owned": ["bicycle", "radio", "cow_plough", "solar_panel", "solar_torch", "mobile_phone"], "F06_crops_contr": "less_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Sept", "Oct", "Nov", "Dec"], "A11_years_farm": 7.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": ["less_work"], "E24_resp_assoc": null, "A03_quest_no": "125", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 27, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 30, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 11.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 682.0, "gps:Longitude": 33.4834101, "E23_memb_assoc": "no", "E19_period_use": 3.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0512182\nLongetude: 7909708\nAltitude: 710.3m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["borrow_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11218005, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "5"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 14, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 1, "F_curr_liv": "cows"}, {"F11_no_owned": 1, "F_curr_liv": "goats"}, {"F11_no_owned": 20, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:fa201fce-4e94-44b8-b435-c558c2e1ed55", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 4, "_remitters": [{"B13_remitter_location_village": "Tete", "B15_remitter_location_region_other": null, "B15_remitter_location_region": "tete", "B14_remitter_location_district": "Muatize", "B12_remittance_money_type": "Guarda"}], "E18_months_no_water": null, "F07_use_income": "Compra vestu\u00c3\u00a1rio;\nPaga despesas escolares\nCompra produtos alimentares e de higiene", "G01_no_meals": 3, "E17_no_enough_water": "no", "F04_need_money": "no", "A05_end": "2017-05-04T11:38:38.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["maize", "sweetpotato"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "bucket", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-05-04", "B11_remittance_money": "yes", "A04_start": "2017-05-04T11:16:57.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "potatoes"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Mar", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.2, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 7.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "potatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Mar", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu sua habita\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2009, "F02_source_income": "Renda da agricultura irrigada"}, {"F01_item": "Comprou bicicleta", "F03_year": 2014, "F02_source_income": "Renda da agricultura irrigada"}, {"F01_item": "Comprou telem\u00c3\u00b3vel", "F03_year": 2016, "F02_source_income": "Renda da agricultura irrigada"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "poultry"], "B_no_membrs": 3, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["bicycle", "cow_plough", "solar_panel", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 14.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "119", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 40, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 69, "B02_memb_gender": "male", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "parent", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": "yes", "A09_village": "village3b", "C01_respondent_roof_type": "grass", "gps:Altitude": 706.0, "gps:Longitude": 33.48334839, "E23_memb_assoc": "no", "E19_period_use": 3.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0513180\nLongetude: 7912422\nAltitude: 714m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11225658, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "3"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 16, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:628fe23d-188f-43e4-a203-a4bf3257d461", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-05-11T05:41:56.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [], "A01_interview_date": "2017-05-11", "B11_remittance_money": "no", "A04_start": "2017-05-11T05:24:25.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 8.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 8.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 24.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 750.0, "D17_cost_seed": null, "D12_harvst_amount": 30.0, "D16_imprv_seed": "no", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 16.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2015, "F02_source_income": "Renda proveniente da agricultura em sequeiro"}, {"F01_item": "Comprou motorizada;\nComprou aparelhagem sonora;\nConstruiu sua casa.", "F03_year": 2016, "F02_source_income": "Renda proveniente de agricultura"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["cow_cart", "motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 16.0, "F09_du_labour": "no", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "115", "_members": [{"B06_memb_education": "sec_2", "B05_memb_age": 27, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 23, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 20.0, "E20_exper_other": null, "A09_village": "village3a", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 0.0, "gps:Longitude": 33.4761047, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0512956\nLongetude: 7912742\nAltitude: 712m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.1114691, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "4"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 22, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 5, "F_curr_liv": "cows"}, {"F11_no_owned": 4, "F_curr_liv": "goats"}, {"F11_no_owned": 40, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:e4f4d6ba-e698-45a5-947f-ba6da88cc22b", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra produtos alimentares, produtos de higiene etc.", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-05-11T06:08:58.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2017-05-11", "B11_remittance_money": "no", "A04_start": "2017-05-11T05:42:08.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "sorghum"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 3, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino e caprino", "F03_year": 2001, "F02_source_income": "Renda proveniente da agricultura"}, {"F01_item": "Construiu sua casa", "F03_year": 2004, "F02_source_income": "Renda proveniente da agricultura"}, {"F01_item": "Abriu um po\u00c3\u00a7o", "F03_year": 2008, "F02_source_income": "Renda proveniente da agricultura"}, {"F01_item": "Comprou bicicleta e 2 charuas de trac\u00c3\u00a7\u00c3\u00a3o animal", "F03_year": 2010, "F02_source_income": "Renda proveniente da agricultura"}, {"F01_item": "Comprou uma caroca de trac\u00c3\u00a7\u00c3\u00a3o aninal", "F03_year": 2012, "F02_source_income": "Renda proveniente de agricultura"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "poultry"], "B_no_membrs": 15, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_cart", "bicycle", "radio", "cow_plough", "solar_panel", "table", "mobile_phone"], "F06_crops_contr": "abt_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Aug", "Sept", "Oct", "Nov"], "A11_years_farm": 22.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "108", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 54, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 34, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_4", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["artisan"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_4", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 13, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 13, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 14, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 15, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 20.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 0.0, "gps:Longitude": 33.4761047, "E23_memb_assoc": "no", "E19_period_use": 16.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 18\u00c2\u00b055'4.87711\"S\nLongetude: 33\u00c2\u00b06'5.078774\"E\nAltitude: 684m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_portion", "reduce_meals"], "F05_money_source_other": null, "gps:Latitude": -19.1114691, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "15"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "no", "B16_years_liv": 25, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 1, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:cfee6297-2c0e-4f8a-94cc-9aaee0bd64cb", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-05-11T06:22:19.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [], "A01_interview_date": "2017-05-11", "B11_remittance_money": "no", "A04_start": "2017-05-11T06:09:56.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 15.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2002, "F02_source_income": "Renda proveniente de agricultura"}, {"F01_item": "Construiu sua casa melhorada", "F03_year": 2012, "F02_source_income": "Renda proveniente de agricultura"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 5, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Jan", "Nov", "Dec"], "A11_years_farm": 21.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "116", "_members": [{"B06_memb_education": "none", "B05_memb_age": 48, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 22, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 17, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 20.0, "E20_exper_other": null, "A09_village": "village3b", "C01_respondent_roof_type": "grass", "gps:Altitude": 0.0, "gps:Longitude": 33.4761047, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0512957\nLongitude: 7912744\nAltitude: 714m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.1114691, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "5"}, {"C06_rooms": 4, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 28, "E_yes_group_count": null, "F_liv": [], "_note2": null, "instanceID": "uuid:3fe626b3-c794-48e1-a80f-5bfe440c507b", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "1", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-05-11T06:55:35.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 1, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [], "A01_interview_date": "2017-05-11", "B11_remittance_money": "no", "A04_start": "2017-05-11T06:28:02.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 12.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": null, "D06_mnth_harvest": "June", "D08_land_planted": 12.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 3000.0, "D12_harvst_amount": 48.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "shared", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou bicicleta", "F03_year": 2005, "F02_source_income": "Renda proveniente de pequenos neg\u00c3\u00b3cios"}, {"F01_item": "Comprou aparelhagem sonora", "F03_year": 2007, "F02_source_income": "Renda proveniente de pequenos neg\u00c3\u00b3cios"}, {"F01_item": "Construiu a sua banca", "F03_year": 2012, "F02_source_income": "Renda proveniente de pequenos neg\u00c3\u00b3cios"}, {"F01_item": "Comprou uma motorizada", "F03_year": 2014, "F02_source_income": "Renda proveniente de pequenos neg\u00c3\u00b3cios"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["motorcyle", "television", "radio", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Feb", "Nov", "Dec"], "A11_years_farm": 1.0, "F09_du_labour": "yes", "E_no_group_count": "1", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "117", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 28, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 22, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 22, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 21, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 20.0, "E20_exper_other": null, "A09_village": "village3b", "C01_respondent_roof_type": "grass", "gps:Altitude": 0.0, "gps:Longitude": 33.4761047, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513163\nLongitude: 7912749\nAltitude: 723m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "restrict_adults", "borrow_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.1114691, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "10"}, {"C06_rooms": 4, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 5, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 4, "F_curr_liv": "oxen"}, {"F11_no_owned": 4, "F_curr_liv": "cows"}, {"F11_no_owned": 4, "F_curr_liv": "goats"}, {"F11_no_owned": 1, "F_curr_liv": "sheep"}], "_note2": null, "instanceID": "uuid:0670cef6-d233-4852-89d8-36955261b0a3", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Paga despesas da casa\nCompra de vestu\u00c3\u00a1rios\nCompra produtos de higiene \nCompra produtos alimentares", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "yes", "A05_end": "2017-05-18T05:02:38.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": ["farming"], "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-05-18", "B11_remittance_money": "no", "A04_start": "2017-05-18T04:36:23.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 6.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "May", "D08_land_planted": 6.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "spouse_du_free", "D06_mnth_harvest": "Aug", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 42.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 180.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 42.0, "D16_imprv_seed": "no", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 4800.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu a sua casa", "F03_year": 2013, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou gado bovino e caprino", "F03_year": 2008, "F02_source_income": "Renda proveniente da agricultura irrigada"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "sheep"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "frequently", "F14_items_owned": ["cow_cart", "television", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["none"], "A11_years_farm": 5.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "144", "_members": [{"B06_memb_education": "sec_3", "B05_memb_age": 21, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "adl_literacy", "B05_memb_age": 45, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 25, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["salar_job"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["salar_job"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_business"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["small_business"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 710.0, "gps:Longitude": 33.48342233, "E23_memb_assoc": "no", "E19_period_use": 5.0, "E25_fees_water": "yes", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513357\nLongetude: 7910070\nAltitude: 737.7m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11218801, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 24, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 4, "F_curr_liv": "oxen"}, {"F11_no_owned": 8, "F_curr_liv": "cows"}, {"F11_no_owned": 3, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:9a096a12-b335-468c-b3cc-1191180d62de", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra os seguinte:\nAlimenta\u00c3\u00a7\u00c3\u00a3o;\nVestuarios;\nPaga transporte;\nProdutos de higiene;", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-05-18T06:37:10.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["beans", "tomatoes", "piri_piri"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_irr_ass", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2017-05-18", "B11_remittance_money": "no", "A04_start": "2017-05-18T05:55:04.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 4.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 4.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans", "tomatoes", "piri_piri"], "D01_curr_plot": 3, "D02_total_plot": 5.5, "D03_unit_land": "hactare", "D_crops_count": "3", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 770.0, "D22_sell": "no", "D20_paid_labour": "yes", "D21_cost_labour": 1000.0, "D17_cost_seed": 1200.0, "D12_harvst_amount": 1.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 3200.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Sept", "D08_land_planted": 2.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 900.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 501.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 3900.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 8200.0, "D17_cost_seed": 2400.0, "D12_harvst_amount": 501.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 11200.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Jan", "D08_land_planted": 1.0, "D11_harvst_unit": "kg", "D19_pesticide_other": null, "D25_price": 50.0, "D19_pesticide": "required_buyer", "D07_ploughing_typ": "ox", "D24_amnt_sold": 200.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 340.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 200.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "piri_piri", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado bovino", "F03_year": 2004, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou uma motorizada", "F03_year": 2010, "F02_source_income": "Renda proveniente da agricultura irrigada"}, {"F01_item": "Construiu sua casa de habita\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2005, "F02_source_income": "Renda proveniente da agricultura irrigada"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "frequently", "F14_items_owned": ["cow_cart", "motorcyle", "television", "radio", "cow_plough", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Dec"], "A11_years_farm": 24.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "143", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 38, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 58, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "parent", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 29, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 17, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 13, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 11, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 1911.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 0.0, "gps:Longitude": 33.4763322, "E23_memb_assoc": "no", "E19_period_use": 12.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0513751\nLongetude: 7908694\nAltitude: 764m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety"], "F05_money_source_other": null, "gps:Latitude": -19.1124845, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "10"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 8, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:92613d0d-e7b1-4d62-8ea4-451d7cd0a982", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Apr", "May", "June", "July", "Aug", "Sept", "Oct", "Nov"], "F07_use_income": "Pagamento das despesas escolares\nComora de produtos alimentares e de higiene", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-05-18T10:56:00.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "flood", "E08_crops": ["other"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": "Inhame", "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-05-18", "B11_remittance_money": "no", "A04_start": "2017-05-18T10:37:37.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 5.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["other"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": "Inhame", "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 4.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "other", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Compra de alimenta\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2006, "F02_source_income": "Pequenos buscatos"}], "F_liv_count": "1", "F10_liv_owned": ["cows"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "yes", "E26_affect_conflicts": "never", "F14_items_owned": ["mobile_phone"], "F06_crops_contr": "less_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Sept", "Oct", "Nov"], "A11_years_farm": 8.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "150", "_members": [{"B06_memb_education": "sec_2", "B05_memb_age": 41, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 14, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 17.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 709.0, "gps:Longitude": 33.47618369, "E23_memb_assoc": "no", "E19_period_use": 8.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0512603\nLongetude: 7910068\nAltitude: 724.9m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["reduce_meals", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11147739, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 24, "E_yes_group_count": "2", "F_liv": [], "_note2": null, "instanceID": "uuid:37577f91-d665-443e-8d70-b914954cef4b", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": null, "F07_use_income": "Compra produtos de primeira necessidade", "G01_no_meals": 3, "E17_no_enough_water": "no", "F04_need_money": "no", "A05_end": "2017-05-18T11:07:35.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "flood", "E08_crops": ["maize"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "rain_flood", "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}], "A01_interview_date": "2017-05-18", "B11_remittance_money": "no", "A04_start": "2017-05-18T10:56:16.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 2.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 40.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["sorghum"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 0.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 1.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "sorghum", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu sua casa", "F03_year": 2006, "F02_source_income": "Renda proveniente de arrendamento de machambas"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["radio", "solar_panel", "solar_torch"], "F06_crops_contr": "less_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Sept", "Oct", "Nov"], "A11_years_farm": 17.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "159", "_members": [{"B06_memb_education": "pri_5", "B05_memb_age": 24, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 28.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "grass", "gps:Altitude": 712.0, "gps:Longitude": 33.47617506, "E23_memb_assoc": "no", "E19_period_use": 2.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0510189\nLongetude: 7907503\nAltitude: 677m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11149498, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "4"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 13, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:f22831ec-6bc3-4b73-9197-4b01e01abb66", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Jan", "Dec"], "F07_use_income": "Compra de produtos de higiene, alimenta\u00c3\u00a7\u00c3\u00a3o e alguns bens e animais para cria\u00c3\u00a7\u00c3\u00a3o", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-06-03T05:32:19.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2017-06-03", "B11_remittance_money": "no", "A04_start": "2017-06-03T05:08:49.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 750.0, "D12_harvst_amount": 18.0, "D16_imprv_seed": "yes", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 2, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 2500.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 12.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 120.0, "D12_harvst_amount": 13.0, "D16_imprv_seed": "yes", "D23_where_sold": ["visiting_traders"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 3, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Constru\u00c3\u00a7\u00c3\u00a3o da sua casa", "F03_year": 2015, "F02_source_income": "Renda proveniente da agricultura"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "frequently", "F14_items_owned": ["cow_cart", "cow_plough", "solar_torch", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Nov"], "A11_years_farm": 3.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "yes", "A03_quest_no": "160", "_members": [{"B06_memb_education": "none", "B05_memb_age": 46, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 13, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 5, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 12.0, "E20_exper_other": "yes", "A09_village": "village2", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 711.0, "gps:Longitude": 33.4834495, "E23_memb_assoc": "yes", "E19_period_use": 3.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Pontos Geograficos\n\nLatitude: 0510016\nLongetude: 7907498\nAltitude: 656m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11218456, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 14, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 4, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 4, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:62f3f7af-f0f3-4f88-b9e0-acf8baa49ae4", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov", "Dec"], "F07_use_income": "Compra de produtos alimentares e de higiene \nPagamento de despesas escolares\nAjuda a comprar produtos para o seu negocio", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-06-03T05:51:49.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["beans"], "E09_irr_manager": ["other_non_rel"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-06-03", "B11_remittance_money": "no", "A04_start": "2017-06-03T05:32:33.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["beans"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["parent"], "D10_who_own": "du", "D06_mnth_harvest": "Oct", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 2500.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabecas de gado", "F03_year": 2006, "F02_source_income": "Renda proveniente de agricultura"}, {"F01_item": "Comprou um congelador", "F03_year": 2010, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 9, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["cow_cart", "motorcyle", "bicycle", "television", "radio", "cow_plough", "solar_torch", "electricity", "table", "sofa_set", "mobile_phone", "fridge"], "F06_crops_contr": "less_half", "B17_parents_liv": "no", "G02_months_lack_food": ["none"], "A11_years_farm": 14.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "165", "_members": [{"B06_memb_education": "sec_2", "B05_memb_age": 50, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["salar_job"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["salar_job"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 41, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 23, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 708.0, "gps:Longitude": 33.48346513, "E23_memb_assoc": "no", "E19_period_use": 10.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "O entrevistado vive na vila de Messica, em ruaca tem apenas as machambas e trabalhadores.\n\nPonto geogr\u00c3\u00a1fico\n\nLatitude: 0514373\nLongetude: 7911644\nAltitude: 756.4m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11217437, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "9"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 16, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:40aac732-94df-496c-97ba-5b67f59bcc7a", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct"], "F07_use_income": "Compra produtos alimentares e de higiene \nCompra vestu\u00c3\u00a1rio e mobili\u00c3\u00a1rio", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-06-03T06:25:06.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 3}], "A01_interview_date": "2017-06-03", "B11_remittance_money": "no", "A04_start": "2017-06-03T05:53:28.000Z", "D_plots": [{"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 1, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["other_rel"], "D10_who_own": "other", "D06_mnth_harvest": "Feb", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 250.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 16.0, "D10_who_own_other": "Fam\u00c3\u00adlia", "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 16.0, "D16_imprv_seed": "no", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["other_non_rel"], "D10_who_own": "other", "D06_mnth_harvest": "June", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 3.0, "D10_who_own_other": "Pertence ao filho", "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 17.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 3, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["other_non_rel"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 17.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou animais", "F03_year": 2015, "F02_source_income": "Renda proveniente de venda de milho"}, {"F01_item": "Comprou bicicleta", "F03_year": 2015, "F02_source_income": "Renda proveniente da venda de tomate"}], "F_liv_count": "1", "F10_liv_owned": ["goats"], "B_no_membrs": 11, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["bicycle", "solar_torch", "mobile_phone"], "F06_crops_contr": "less_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Feb", "Mar"], "A11_years_farm": 16.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "166", "_members": [{"B06_memb_education": "pri_6", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 50, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 61, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": "Esposo", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 22, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 15, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 1799.999, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 0.0, "gps:Longitude": 33.4826653, "E23_memb_assoc": "no", "E19_period_use": 2.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "A chefe destacasa e a mulher o seu marido \u00c3\u00a9 poligamo, em outra casa com outra mulher numa outra zona fora de Ruaca. Ele tem vindo as vezes enquanto a esta casa. O filho mais velho desta casa produz tomate. A mae e a filha mais velha dedicam se na produ\u00c3\u00a7\u00c3\u00a3o", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["go_forest", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.1138589, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "11"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 24, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 1, "F_curr_liv": "cows"}, {"F11_no_owned": 8, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:a9d1a013-043b-475d-a71b-77ed80abe970", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 5, "_remitters": [], "E18_months_no_water": ["July", "Aug", "Sept", "Oct", "Nov", "Dec"], "F07_use_income": "Compra produtos de alimenta\u00c3\u00a7\u00c3\u00a3o e produtos de higiene, mobili\u00c3\u00a1rio e pagamento de despesas escolares", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-06-03T06:45:06.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "spouse", "child", "parent"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-06-03", "B11_remittance_money": "no", "A04_start": "2017-06-03T06:25:09.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 8.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Sept", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 250.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 12.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 600.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 13.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou cabe\u00c3\u00a7as de gado", "F03_year": 2014, "F02_source_income": "Renda proveniente da produ\u00c3\u00a7\u00c3\u00a3o de tomate"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "yes", "E26_affect_conflicts": "never", "F14_items_owned": ["motorcyle", "radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "less_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Nov", "Dec"], "A11_years_farm": 16.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "167", "_members": [{"B06_memb_education": "sec_3", "B05_memb_age": 28, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 56, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 61, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 18, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "other", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": "Nora", "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 20, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 16, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 2000.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 0.0, "gps:Longitude": 33.4882685, "E23_memb_assoc": "no", "E19_period_use": 16.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 18\u00c2\u00b054'10\"S\nLongetude: 33\u00c2\u00b08'36\"E\nAltitude: 845m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.1149887, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "8"}, {"C06_rooms": 2, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 25, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 8, "F_curr_liv": "oxen"}, {"F11_no_owned": 9, "F_curr_liv": "cows"}, {"F11_no_owned": 7, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:43ec6132-478c-4f87-878d-fb3c0c4d0c74", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov", "Dec"], "F07_use_income": "Compra de produtos alimentares, de higiene, despesas de casa.\nCompra de vestu\u00c3\u00a1rio e mobili\u00c3\u00a1rio.", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-06-03T07:20:21.000Z", "C04_window_type": "no", "E21_other_meth": "yes", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "other"], "E09_irr_manager_other": "Trabalhadores", "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": 0.0, "E15_duration": "year", "E07_bring": "yes", "E14_access": "rented", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "other"], "E09_irr_manager_other": "Trabalhadores", "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2017-06-03", "B11_remittance_money": "no", "A04_start": "2017-06-03T06:50:47.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 7.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 7.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 20.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": null, "D06_mnth_harvest": "Nov", "D08_land_planted": 1.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 200.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 2340.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1300.0, "D12_harvst_amount": 200.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "rentedin", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 5000.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 3, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 100.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 1870.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 620.0, "D12_harvst_amount": 100.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 2500.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou de uma camioneta (carro)", "F03_year": 2014, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Compra de uma camioneta (carro)", "F03_year": 2016, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comora de uma motorizada", "F03_year": 2011, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 12, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["car", "lorry", "motorcyle", "radio", "sterio", "cow_plough", "solar_panel", "solar_torch", "table", "sofa_set", "mobile_phone", "fridge"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Feb", "Dec"], "A11_years_farm": 13.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": ["cheaper"], "E24_resp_assoc": null, "A03_quest_no": "174", "_members": [{"B06_memb_education": "none", "B05_memb_age": 25, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 30, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["artisan"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 12, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "none", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 25, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 5, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 3.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 703.0, "gps:Longitude": 33.48340539, "E23_memb_assoc": "no", "E19_period_use": 13.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 051458\nLongetude: 791230\nAltitude:653m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11216751, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "12"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 36, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}, {"F11_no_owned": 15, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:64fc743e-8176-40f6-8ae4-36ae97fac1d9", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Oct", "Nov"], "F07_use_income": "Compra produtos alimentares, de higiene, utens\u00c3\u00adlios dom\u00c3\u00a9sticos, vestu\u00c3\u00a1rio e despesas da casa", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-06-03T07:51:29.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes", "vegetable"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-06-03", "B11_remittance_money": "no", "A04_start": "2017-06-03T07:21:48.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 2.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 350.0, "D12_harvst_amount": 10.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes", "vegetable"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "2", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 100.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 700.0, "D12_harvst_amount": 100.0, "D16_imprv_seed": "yes", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 200.0, "D12_harvst_amount": 3.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 600.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou canecas de boi, \nComprou motorizada", "F03_year": 2016, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou chapas de cobertura da sua casa\nComprou 3 biscicletas", "F03_year": 2008, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou machambas", "F03_year": 2013, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "4", "F10_liv_owned": ["oxen", "cows", "goats", "poultry"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "yes", "E26_affect_conflicts": "never", "F14_items_owned": ["motorcyle", "bicycle", "radio", "sterio", "cow_plough", "solar_panel", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Oct", "Nov", "Dec"], "A11_years_farm": 11.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "175", "_members": [{"B06_memb_education": "pri_4", "B05_memb_age": 36, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 27, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 705.0, "gps:Longitude": 33.48336019, "E23_memb_assoc": "no", "E19_period_use": 11.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0515370\nLongetude: 7911583\nAltitude: 790m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11217963, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 16, "E_yes_group_count": "3", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 2, "F_curr_liv": "cows"}, {"F11_no_owned": 7, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:c17e374c-280b-4e78-bf21-74a7c1c73492", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "sunbricks", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct", "Nov", "Dec"], "F07_use_income": "Compra alimenta\u00c3\u00a7\u00c3\u00a3o \nPaga despesas escolares", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-06-03T15:53:10.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["piri_piri"], "E09_irr_manager": ["du_head"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["baby_corn"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "far", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2017-06-03", "B11_remittance_money": "no", "A04_start": "2017-06-03T15:23:01.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 7.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "May", "D08_land_planted": 7.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 6.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["piri_piri"], "D01_curr_plot": 2, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "spouse_du_parts", "D06_mnth_harvest": "Dec", "D08_land_planted": 3.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 315.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 280.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 280.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "piri_piri", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["baby_corn"], "D01_curr_plot": 3, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Aug", "D08_land_planted": 3.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 75.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 40.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 40.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "baby_corn", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou bois", "F03_year": 2015, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 15, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["motorcyle", "radio", "sterio", "cow_plough", "solar_panel", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Nov"], "A11_years_farm": 10.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "189", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 34, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 13, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 7, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 27, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 100, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 2, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 11, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 12, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 13, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 14, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 15, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 4.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 714.0, "gps:Longitude": 33.48341529, "E23_memb_assoc": "no", "E19_period_use": 7.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0512661\nLongetude: 7902782\nAltitude: 685.3m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11216796, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "15"}, {"C06_rooms": 4, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 5, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:dad53aff-b520-4015-a9e3-f5fdf9168fe1", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra de gado para cria\u00c3\u00a7\u00c3\u00a3o \nCompra de alimenta\u00c3\u00a7\u00c3\u00a3o \nCompra de produtos de higiene", "G01_no_meals": 2, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-06-03T16:17:26.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}], "A01_interview_date": "2017-06-03", "B11_remittance_money": "no", "A04_start": "2017-06-03T15:54:03.000Z", "D_plots": [{"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 1, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Feb", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 250.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 600.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 5.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 300.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 12.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Construiu sua casa", "F03_year": 2013, "F02_source_income": "Renda proveniente de produ\u00c3\u00a7\u00c3\u00a3o de tomate"}], "F_liv_count": "1", "F10_liv_owned": ["cows"], "B_no_membrs": 10, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "never", "F14_items_owned": ["radio", "cow_plough", "solar_panel", "solar_torch", "mobile_phone"], "F06_crops_contr": "abt_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov", "Dec"], "A11_years_farm": 3.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "191", "_members": [{"B06_memb_education": "na", "B05_memb_age": 46, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 41, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 19, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 27, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 10, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 11, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 9, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 7, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 10, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 709.0, "gps:Longitude": 33.48338051, "E23_memb_assoc": "no", "E19_period_use": 3.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 13\u00c2\u00b054'20\"S\nLongetude: 33\u00c2\u00b08'35\"E\nAltitude: 841m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["go_forest", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11219207, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "10"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 20, "E_yes_group_count": "3", "F_liv": [], "_note2": null, "instanceID": "uuid:f94409a6-e461-4e4c-a6fb-0072d3d58b00", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "3", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 4, "_remitters": [], "E18_months_no_water": ["Sept", "Nov"], "F07_use_income": "Compra produtos de alimenta\u00c3\u00a7\u00c3\u00a3o \nCompra de vesti\u00c3\u00a1rios \nPagamento de despesas escolares", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-06-03T17:16:39.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 3, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["other_non_rel"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 1}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["baby_corn"], "E09_irr_manager": ["other_non_rel"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "inherited", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}], "A01_interview_date": "2017-06-03", "B11_remittance_money": "no", "A04_start": "2017-06-03T16:17:55.000Z", "D_plots": [{"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 1, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "du", "D06_mnth_harvest": "Oct", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 400.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 76.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 600.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 125.0, "D17_cost_seed": null, "D12_harvst_amount": 76.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": null, "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "rentedin", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["baby_corn"], "D01_curr_plot": 3, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 75.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 10.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 18.0, "D16_imprv_seed": "no", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "baby_corn", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou televis\u00c3\u00a3o", "F03_year": 2016, "F02_source_income": "Renda proveniete de produ\u00c3\u00a7\u00c3\u00a3o de tomate"}, {"F01_item": "Pagou despesas de casamento", "F03_year": 2006, "F02_source_income": "Renda proveniente de tomate"}, {"F01_item": "Construiu", "F03_year": 2007, "F02_source_income": "Renda proveniente de venda de babycorn"}, {"F01_item": "Comprou um r\u00c3\u00a1dio", "F03_year": 2014, "F02_source_income": "Renda proveniente de venda de tomate"}, {"F01_item": "Comprou bicicleta", "F03_year": 2015, "F02_source_income": "Renda proveniente de venda de tomate"}], "F_liv_count": "1", "F10_liv_owned": ["none"], "B_no_membrs": 9, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "once", "F14_items_owned": ["bicycle", "television", "radio", "sterio", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Jan", "Nov", "Dec"], "A11_years_farm": 15.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "192", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 28, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "artisan"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 20, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 69, "B02_memb_gender": "female", "B04_memb_marital_status": "widow/er", "B03_relationship_du": "parent", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 9, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_3", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_6", "B05_memb_age": 19, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Grandchild", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 9, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 4.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "grass", "gps:Altitude": 705.0, "gps:Longitude": 33.48335905, "E23_memb_assoc": "no", "E19_period_use": 5.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0512606\nLongetude: 7903109\nAltitude: 687.0m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["borrow_food"], "F05_money_source_other": null, "gps:Latitude": -19.11215404, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "9"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "yes", "B16_years_liv": 7, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 2, "F_curr_liv": "oxen"}, {"F11_no_owned": 3, "F_curr_liv": "cows"}, {"F11_no_owned": 2, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:69caea81-a4e5-4e8d-83cd-9c18d8e8d965", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Compra produtos alimentares,\nCompra produtos de higiene,\nCompra vestu\u00c3\u00a1rios", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-05-18T04:35:47.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["parent"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-05-18", "B11_remittance_money": "no", "A04_start": "2017-05-18T04:13:37.000Z", "D_plots": [{"D04_crops_harvsted": ["maize", "beans", "peanut"], "D01_curr_plot": 1, "D02_total_plot": 4.5, "D03_unit_land": "hactare", "D_crops_count": "3", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "yes", "D21_cost_labour": 1000.0, "D17_cost_seed": null, "D12_harvst_amount": 8.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 1.0, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": 600.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 300.0, "D17_cost_seed": null, "D12_harvst_amount": 3.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "beans", "D_repeat_times_count": "1", "D05_times": 1}, {"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "tins", "D19_pesticide_other": null, "D25_price": 200.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 100.0, "D17_cost_seed": null, "D12_harvst_amount": 2.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "peanut", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Feb", "D08_land_planted": 1.0, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 250.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 25.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 500.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 250.0, "D17_cost_seed": null, "D12_harvst_amount": 25.0, "D16_imprv_seed": "no", "D23_where_sold": ["urban_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou uma motorizada", "F03_year": 2014, "F02_source_income": "Renda proveniente da agricultura irrigada"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 3, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["motorcyle", "radio", "solar_panel"], "F06_crops_contr": "less_half", "B17_parents_liv": "yes", "G02_months_lack_food": ["Oct", "Nov", "Dec"], "A11_years_farm": 5.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "126", "_members": [{"B06_memb_education": "pri_3", "B05_memb_age": 35, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 42, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 7.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 700.0, "gps:Longitude": 33.48337856, "E23_memb_assoc": "no", "E19_period_use": 4.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico \n\nLatitude: 0512603\nLongetude: 7910242\nAltitude: 726.4m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11219355, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "3"}, {"C06_rooms": 3, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 10, "E_yes_group_count": "4", "F_liv": [{"F11_no_owned": 5, "F_curr_liv": "oxen"}, {"F11_no_owned": 14, "F_curr_liv": "cows"}, {"F11_no_owned": 10, "F_curr_liv": "goats"}], "_note2": null, "instanceID": "uuid:5ccc2e5a-ea90-48b5-8542-69400d5334df", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "4", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "cement", "C05_buildings_in_compound": 3, "_remitters": [], "E18_months_no_water": ["Oct", "Nov", "Dec"], "F07_use_income": "Compra de produtos alimentares", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-06-04T10:13:32.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 4, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["other"], "E09_irr_manager_other": "Empregados", "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}, {"E12_apply_water": "furrows", "E08_crops": ["cabbage"], "E09_irr_manager": ["other"], "E09_irr_manager_other": "Empregados", "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "allocated_cus_aut", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 3}, {"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 4}], "A01_interview_date": "2017-06-04", "B11_remittance_money": "no", "A04_start": "2017-06-04T09:36:20.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 3.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "June", "D08_land_planted": 3.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 2000.0, "D17_cost_seed": null, "D12_harvst_amount": 10.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 2.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Mar", "D08_land_planted": 2.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 400.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 900.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 900.0, "D12_harvst_amount": 400.0, "D16_imprv_seed": "yes", "D23_where_sold": ["main_road"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["cabbage"], "D01_curr_plot": 3, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "Nov", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 17.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 17.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "cabbage", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 4, "D02_total_plot": 1.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "du", "D06_mnth_harvest": "July", "D08_land_planted": 1.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 2.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 7.0, "D16_imprv_seed": "no", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou animais", "F03_year": 2008, "F02_source_income": "Produ\u00c3\u00a7\u00c3\u00a3o Agr\u00c3\u00adcola"}, {"F01_item": "Pagamento de despesas da casa", "F03_year": 2016, "F02_source_income": "Produ\u00c3\u00a7\u00c3\u00a3o agr\u00c3\u00adcola"}], "F_liv_count": "3", "F10_liv_owned": ["oxen", "cows", "goats"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["car", "lorry", "television", "radio", "sterio", "cow_plough", "solar_torch", "electricity", "table", "sofa_set", "mobile_phone", "fridge"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["none"], "A11_years_farm": 10.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "193", "_members": [{"B06_memb_education": "university", "B05_memb_age": 51, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["salar_job"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["comm_farming", "salar_job"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 51, "B02_memb_gender": "female", "B04_memb_marital_status": "married", "B03_relationship_du": "Spouse", "B07_residence_status": "Occasional", "B09_interviewee_main_activities": ["salar_job"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["comm_farming", "salar_job"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_2", "B05_memb_age": 14, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_5", "B05_memb_age": 25, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["salar_job"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["salar_job"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 16, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 28, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["housework", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 18, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Holidays", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 9.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 720.0, "gps:Longitude": 33.48339039, "E23_memb_assoc": "no", "E19_period_use": 10.0, "E25_fees_water": "no", "C07_other_buildings": "yes", "observation": "O senhor Tome Florindo tem 2 canais de agua e 5 trabalhadores que vivem em Ruaca, sao esses que fazem trabalho enquanto ele esta a trabalhar como locutor na r\u00c3\u00a1dio Mo\u00c3\u00a7ambique emissor provincial de Manica em Chimoio.\n\nPonto geogr\u00c3\u00a1fico\n\nLatitude: 18\u00c2\u00b053'54.9", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["na"], "F05_money_source_other": null, "gps:Latitude": -19.11215668, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "7"}, {"C06_rooms": 1, "B19_grand_liv": "yes", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 5, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 5, "F_curr_liv": "poultry"}], "_note2": null, "instanceID": "uuid:95c11a30-d44f-40c4-8ea8-ec34fca6bbbf", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "no", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "muddaub", "C05_buildings_in_compound": 2, "_remitters": [], "E18_months_no_water": ["Aug", "Sept", "Oct"], "F07_use_income": "Compra produtos alimentares e de higiene e ajuda nas despesas da casa", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "no", "A05_end": "2017-06-04T10:32:06.000Z", "C04_window_type": "no", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "earth", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["tomatoes"], "E09_irr_manager": ["du_head", "spouse", "child"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "middle", "E16_amount_pay": 3000.0, "E15_duration": "year", "E07_bring": "yes", "E14_access": "rented", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-06-04", "B11_remittance_money": "no", "A04_start": "2017-06-04T10:13:36.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": null, "D10_who_own": "du", "D06_mnth_harvest": "Mar", "D08_land_planted": 4.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": null, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": null, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "no", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": null, "D12_harvst_amount": 17.0, "D16_imprv_seed": "no", "D23_where_sold": null, "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["tomatoes"], "D01_curr_plot": 2, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head", "spouse"], "D10_who_own": null, "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "crates", "D19_pesticide_other": null, "D25_price": 500.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "ox", "D24_amnt_sold": 2400.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "no", "D21_cost_labour": null, "D17_cost_seed": 1800.0, "D12_harvst_amount": 2400.0, "D16_imprv_seed": "yes", "D23_where_sold": ["On_contract"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "rentedin", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1400.0}], "D_curr_crop": "tomatoes", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou painel solar", "F03_year": 2012, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Construiu sua casa de habita\u00c3\u00a7\u00c3\u00a3o", "F03_year": 2011, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Pagamento de despesas escolares", "F03_year": 2013, "F02_source_income": "Renda proveniente de agricultura"}], "F_liv_count": "1", "F10_liv_owned": ["poultry"], "B_no_membrs": 4, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["radio", "solar_panel", "solar_torch", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Sept", "Oct", "Nov"], "A11_years_farm": 5.0, "F09_du_labour": "yes", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "194", "_members": [{"B06_memb_education": "pri_7", "B05_memb_age": 40, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 34, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 1, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 10.0, "E20_exper_other": "yes", "A09_village": "village3", "C01_respondent_roof_type": "grass", "gps:Altitude": 719.0, "gps:Longitude": 33.48347111, "E23_memb_assoc": "no", "E19_period_use": 2.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0515372\nLongetude: 7911789\nAltitude: 777.0m", "_note": null, "A12_agr_assoc": "no", "G03_no_food_mitigation": ["lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11227133, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "4"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "yes", "B18_sp_parents_liv": "no", "B16_years_liv": 17, "E_yes_group_count": "2", "F_liv": [{"F11_no_owned": 1, "F_curr_liv": "oxen"}, {"F11_no_owned": 4, "F_curr_liv": "cows"}], "_note2": null, "instanceID": "uuid:ffc83162-ff24-4a87-8709-eff17abc0b3b", "B20_sp_grand_liv": "no", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": ["Sept", "Oct", "Nov"], "F07_use_income": "Pagamento de despesas escolares \nCompra produtos de alimenta\u00c3\u00a7\u00c3\u00a3o e de higiene", "G01_no_meals": 3, "E17_no_enough_water": "yes", "F04_need_money": "yes", "A05_end": "2017-06-04T10:52:22.000Z", "C04_window_type": "yes", "E21_other_meth": "no", "D_no_plots": 2, "F05_money_source": ["farming", "business"], "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [{"E12_apply_water": null, "E08_crops": null, "E09_irr_manager": null, "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": null, "E16_amount_pay": null, "E15_duration": null, "E07_bring": "no", "E14_access": null, "E11_water_fields": null, "E10_water_source": null, "E06_plot_no": 1}, {"E12_apply_water": "furrows", "E08_crops": ["vegetable"], "E09_irr_manager": ["du_head", "spouse"], "E09_irr_manager_other": null, "E14_access_other": null, "E08_crops_other": null, "E13_plot_loc": "near", "E16_amount_pay": null, "E15_duration": null, "E07_bring": "yes", "E14_access": "purchased", "E11_water_fields": "canal_gravity", "E10_water_source": "river", "E06_plot_no": 2}], "A01_interview_date": "2017-06-04", "B11_remittance_money": "no", "A04_start": "2017-06-04T10:33:55.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 5.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["du_head"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "June", "D08_land_planted": 5.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 5.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 1500.0, "D17_cost_seed": 1800.0, "D12_harvst_amount": 90.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["vegetable"], "D01_curr_plot": 2, "D02_total_plot": 1.0, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["spouse"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Mar", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 800.0, "D19_pesticide": "own_choice", "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 4.0, "D10_who_own_other": null, "D_use_pest": "yes", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": 550.0, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 500.0, "D17_cost_seed": 1500.0, "D12_harvst_amount": 5.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["paid_fertilizer"], "D14_cost_fert": 1600.0}], "D_curr_crop": "vegetable", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [{"F01_item": "Comprou uma motorizada \nEletrificou a sua casa com sistema solar", "F03_year": 2016, "F02_source_income": "Renda proveniente de agricultura irrigada"}, {"F01_item": "Comprou uma cabe\u00c3\u00a7a de boi para criar", "F03_year": 2015, "F02_source_income": "Renda proveniente de agricultura irrigada"}], "F_liv_count": "2", "F10_liv_owned": ["oxen", "cows"], "B_no_membrs": 7, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": "more_once", "F14_items_owned": ["cow_cart", "lorry", "motorcyle", "computer", "television", "radio", "sterio", "cow_plough", "solar_panel", "solar_torch", "electricity", "mobile_phone"], "F06_crops_contr": "more_half", "B17_parents_liv": "no", "G02_months_lack_food": ["Nov", "Dec"], "A11_years_farm": 17.0, "F09_du_labour": "no", "E_no_group_count": null, "E22_res_change": null, "E24_resp_assoc": "yes", "A03_quest_no": "199", "_members": [{"B06_memb_education": "sec_2", "B05_memb_age": 38, "B02_memb_gender": "male", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 37, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["housework", "small_scale_farm", "comm_farming"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm", "comm_farming"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 17, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_1", "B05_memb_age": 15, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 13, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 11, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 3, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 5.0, "E20_exper_other": "yes", "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 711.0, "gps:Longitude": 33.48338952, "E23_memb_assoc": "yes", "E19_period_use": 6.0, "E25_fees_water": "no", "C07_other_buildings": "no", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0512586\nLongitude: 7906236\nAltitude: 711.3m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "limit_variety", "reduce_meals", "restrict_adults", "lab_ex_food"], "F05_money_source_other": null, "gps:Latitude": -19.11227751, "E_no_group": [], "F14_items_owned_other": null, "F08_emply_lab": "yes", "_members_count": "7"}, {"C06_rooms": 2, "B19_grand_liv": "no", "A08_ward": "ward2", "E01_water_use": "no", "B18_sp_parents_liv": "yes", "B16_years_liv": 20, "E_yes_group_count": null, "F_liv": [{"F11_no_owned": 3, "F_curr_liv": "oxen"}, {"F11_no_owned": 5, "F_curr_liv": "goats"}, {"F11_no_owned": 3, "F_curr_liv": "pigs"}], "_note2": null, "instanceID": "uuid:aa77a0d7-7142-41c8-b494-483a5b68d8a7", "B20_sp_grand_liv": "yes", "F10_liv_owned_other": null, "_note1": null, "F12_poultry": "yes", "D_plots_count": "2", "C02_respondent_wall_type_other": null, "C02_respondent_wall_type": "burntbricks", "C05_buildings_in_compound": 1, "_remitters": [], "E18_months_no_water": null, "F07_use_income": null, "G01_no_meals": 3, "E17_no_enough_water": null, "F04_need_money": null, "A05_end": "2017-06-04T11:08:13.000Z", "C04_window_type": "no", "E21_other_meth": null, "D_no_plots": 2, "F05_money_source": null, "A07_district": "district1", "C03_respondent_floor_type": "cement", "E_yes_group": [], "A01_interview_date": "2017-06-04", "B11_remittance_money": "no", "A04_start": "2017-06-04T10:52:46.000Z", "D_plots": [{"D04_crops_harvsted": ["maize"], "D01_curr_plot": 1, "D02_total_plot": 0.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["child"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 0.5, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "hand_hoe", "D24_amnt_sold": 3.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 100.0, "D17_cost_seed": 500.0, "D12_harvst_amount": 3.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}, {"D04_crops_harvsted": ["maize"], "D01_curr_plot": 2, "D02_total_plot": 4.5, "D03_unit_land": "hactare", "D_crops_count": "1", "D04_crops_harvsted_other": null, "D_crops": [{"D_repeat_times": [{"D26_who_sell_harv": ["child"], "D10_who_own": "head_spouse_free", "D06_mnth_harvest": "Apr", "D08_land_planted": 2.0, "D11_harvst_unit": "bags", "D19_pesticide_other": null, "D25_price": 1000.0, "D19_pesticide": null, "D07_ploughing_typ": "ox", "D24_amnt_sold": 1.0, "D10_who_own_other": null, "D_use_pest": "no", "D26_who_sell_harv_other": null, "D15_cost_manu": null, "D07_ploughing_typ_other": null, "D18_cost_pestcd": null, "D22_sell": "yes", "D20_paid_labour": "yes", "D21_cost_labour": 100.0, "D17_cost_seed": 500.0, "D12_harvst_amount": 2.0, "D16_imprv_seed": "yes", "D23_where_sold": ["local_market"], "D11_harvst_unit_other": null, "D09_land_ownshp_other": null, "D09_land_ownshp": "owned", "D13_fertilizer": ["none"], "D14_cost_fert": null}], "D_curr_crop": "maize", "D_repeat_times_count": "1", "D05_times": 1}], "D03_unit_land_other": null}], "F_items": [], "F_liv_count": "3", "F10_liv_owned": ["oxen", "goats", "pigs"], "B_no_membrs": 8, "F13_du_look_aftr_cows": "no", "E26_affect_conflicts": null, "F14_items_owned": ["radio", "cow_plough", "solar_panel", "solar_torch", "table", "mobile_phone"], "F06_crops_contr": null, "B17_parents_liv": "no", "G02_months_lack_food": ["Oct", "Nov"], "A11_years_farm": 20.0, "F09_du_labour": "yes", "E_no_group_count": "2", "E22_res_change": null, "E24_resp_assoc": null, "A03_quest_no": "200", "_members": [{"B06_memb_education": "sec_1", "B05_memb_age": 53, "B02_memb_gender": "male", "B04_memb_marital_status": "married", "B03_relationship_du": "head", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 1, "B08_interviewee_activities": ["small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_5", "B05_memb_age": 30, "B02_memb_gender": "female", "B04_memb_marital_status": "unmarried", "B03_relationship_du": "Spouse", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["small_scale_farm"], "B09_interviewee_main_activities_other": null, "B_memb_no": 2, "B08_interviewee_activities": ["housework", "small_scale_farm"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "sec_3", "B05_memb_age": 17, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 3, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_7", "B05_memb_age": 12, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 4, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_4", "B05_memb_age": 10, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 5, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_2", "B05_memb_age": 8, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 6, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "pri_1", "B05_memb_age": 6, "B02_memb_gender": "male", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 7, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}, {"B06_memb_education": "na", "B05_memb_age": 4, "B02_memb_gender": "female", "B04_memb_marital_status": "single", "B03_relationship_du": "Child", "B07_residence_status": "Always", "B09_interviewee_main_activities": ["na"], "B09_interviewee_main_activities_other": null, "B_memb_no": 8, "B08_interviewee_activities": ["na"], "B03_relationship_du_other": null, "B08_interviewee_activities_other": null}], "A06_province": "province1", "gps:Accuracy": 20.0, "E20_exper_other": null, "A09_village": "village1", "C01_respondent_roof_type": "mabatisloping", "gps:Altitude": 681.0, "gps:Longitude": 33.48337175, "E23_memb_assoc": null, "E19_period_use": null, "E25_fees_water": null, "C07_other_buildings": "yes", "observation": "Ponto geogr\u00c3\u00a1fico\n\nLatitude: 0512624\nLongetude: 7906669\nAltitude: 722.0m", "_note": null, "A12_agr_assoc": "yes", "G03_no_food_mitigation": ["rely_less_food", "restrict_adults", "borrow_food"], "F05_money_source_other": null, "gps:Latitude": -19.11218302, "E_no_group": [{"E04_res_water_field": "land_far", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_chied", "E05_tried_access_other": null, "E02_plot_no": 1}, {"E04_res_water_field": "field_wet", "E03_crops": ["maize"], "E04_res_water_field_other": null, "E05_tried_access": "yes_no_land_sale", "E05_tried_access_other": null, "E02_plot_no": 2}], "F14_items_owned_other": null, "F08_emply_lab": "no", "_members_count": "8"}] \ No newline at end of file diff --git a/data/SAFI_clean.csv b/data/SAFI_clean.csv new file mode 100644 index 000000000..7140812fa --- /dev/null +++ b/data/SAFI_clean.csv @@ -0,0 +1,132 @@ +key_ID,village,interview_date,no_membrs,years_liv,respondent_wall_type,rooms,memb_assoc,affect_conflicts,liv_count,items_owned,no_meals,months_lack_food,instanceID +1,God,2016-11-17T00:00:00Z,3,4,muddaub,1,NULL,NULL,1,bicycle;television;solar_panel;table,2,Jan,uuid:ec241f2c-0609-46ed-b5e8-fe575f6cefef +1,God,2016-11-17T00:00:00Z,7,9, muddaub,1,yes,once,3,cow_cart;bicycle;radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,2,Jan;Sept;Oct;Nov;Dec,uuid:099de9c9-3e5e-427b-8452-26250e840d6e +3,God,2016-11-17T00:00:00Z,10,15, burntbricks,1,NULL,NULL,1,solar_torch,2,Jan;Feb;Mar;Oct;Nov;Dec,uuid:193d7daf-9582-409b-bf09-027dd36f9007 +4,God,2016-11-17T00:00:00Z,7,6, burntbricks,1,NULL,NULL,2,bicycle;radio;cow_plough;solar_panel;mobile_phone,2,Sept;Oct;Nov;Dec,uuid:148d1105-778a-4755-aa71-281eadd4a973 +5,God,2016-11-17T00:00:00Z,7,40,burntbricks,1,NULL,NULL,4,motorcyle;radio;cow_plough;mobile_phone,2,Aug;Sept;Oct;Nov,uuid:2c867811-9696-4966-9866-f35c3e97d02d +6,God,2016-11-17T00:00:00Z,3,3,muddaub,1,NULL,NULL,1,NULL,2,Aug;Sept;Oct,uuid:daa56c91-c8e3-44c3-a663-af6a49a2ca70 +7,God,2016-11-17T00:00:00Z,6,38,muddaub,1,no,never,1,motorcyle;cow_plough,3,Nov,uuid:ae20a58d-56f4-43d7-bafa-e7963d850844 +8,Chirodzo,2016-11-16T00:00:00Z,12,70,burntbricks,3,yes,never,2,motorcyle;bicycle;television;radio;cow_plough;solar_panel;solar_torch;table;fridge,2,Jan,uuid:d6cee930-7be1-4fd9-88c0-82a08f90fb5a +9,Chirodzo,2016-11-16T00:00:00Z,8,6,burntbricks,1,no,never,3,television;solar_panel;solar_torch,3,Jan;Dec,uuid:846103d2-b1db-4055-b502-9cd510bb7b37 +10,Chirodzo,2016-12-16T00:00:00Z,12,23,burntbricks,5,no,never,2,cow_cart;motorcyle;bicycle;television;radio;cow_plough;solar_panel;solar_torch;table,3,Jan;Oct;Nov;Dec,uuid:8f4e49bc-da81-4356-ae34-e0d794a23721 +11,God,2016-11-21T00:00:00Z,6,20,sunbricks,1,NULL,NULL,2,radio;cow_plough,2,Oct;Nov,uuid:d29b44e3-3348-4afc-aa4d-9eb34c89d483 +12,God,2016-11-21T00:00:00Z,7,20,burntbricks,3,yes,never,2,cow_cart;bicycle;radio;cow_plough;table,3,Sept;Oct,uuid:e6ee6269-b467-4e37-91fc-5e9eaf934557 +13,God,2016-11-21T00:00:00Z,6,8,burntbricks,1,no,never,3,bicycle;radio;cow_plough;mobile_phone,2,Sept;Oct;Nov,uuid:6c00c145-ee3b-409c-8c02-2c8d743b6918 +14,God,2016-11-21T00:00:00Z,10,20,burntbricks,3,NULL,NULL,3,bicycle;radio;cow_plough;solar_panel;table;mobile_phone,3,June;July;Aug;Sept;Oct;Nov,uuid:9b21467f-1116-4340-a3b1-1ab64f13c87d +15,God,2016-11-21T00:00:00Z,5,30,sunbricks,2,yes,once,3,bicycle;radio;cow_plough;solar_panel;table,2,Jan;Feb;Mar;Apr;May;June;July;Aug;Sept;Oct;Nov,uuid:a837e545-ff86-4a1c-a1a5-6186804b985f +16,God,2016-11-24T00:00:00Z,6,47,muddaub,1,NULL,NULL,4,radio;cow_plough;solar_panel;solar_torch,3,Jan;Feb,uuid:d17db52f-4b87-4768-b534-ea8f9704c565 +17,God,2016-11-21T00:00:00Z,8,20,sunbricks,1,NULL,NULL,1,mobile_phone,2,Nov;Dec,uuid:4707f3dc-df18-4348-9c2c-eec651e89b6b +18,God,2016-11-21T00:00:00Z,4,20,muddaub,1,NULL,NULL,3,bicycle;mobile_phone,2,Oct;Nov,uuid:7ffe7bd1-a15c-420c-a137-e1f006c317a3 +19,God,2016-11-21T00:00:00Z,9,23,burntbricks,2,NULL,NULL,2,bicycle;radio;cow_plough;solar_panel;solar_torch;mobile_phone,3,Oct;Nov;Dec,uuid:e32f2dc0-0d05-42fb-8e21-605757ddf07d +20,God,2016-11-21T00:00:00Z,6,1,burntbricks,1,NULL,NULL,1,bicycle;cow_plough;solar_torch,2,Oct;Nov,uuid:d1005274-bf52-4e79-8380-3350dd7c2bac +21,God,2016-11-21T00:00:00Z,8,20,burntbricks,1,no,never,3,NULL,2,Jan;Feb;Mar;Oct;Nov;Dec,uuid:6570a7d0-6a0b-452c-aa2e-922500e35749 +22,God,2016-11-21T00:00:00Z,4,20,muddaub,1,NULL,NULL,1,radio,2,Jan;Feb;Mar;Apr;Aug;Sept;Oct;Nov;Dec,uuid:a51c3006-8847-46ff-9d4e-d29919b8ecf9 +23,Ruaca,2016-11-21T00:00:00Z,10,20,burntbricks,4,NULL,NULL,3,cow_cart;bicycle;television;radio;cow_plough;solar_panel;electricity;mobile_phone,3,none,uuid:58b37b6d-d6cd-4414-8790-b9c68bca98de +24,Ruaca,2016-11-21T00:00:00Z,6,4,burntbricks,2,no,never,3,radio;table;sofa_set;mobile_phone,2,Nov;Dec,uuid:661457d3-7e61-45e8-a238-7415e7548f82 +25,Ruaca,2016-11-21T00:00:00Z,11,6,burntbricks,3,no,never,2,cow_cart;motorcyle;television;radio;cow_plough;solar_panel;solar_torch;table;sofa_set;mobile_phone,2,Jan;Feb;Oct,uuid:45ed84c4-114e-4df0-9f5d-c800806c2bee +26,Ruaca,2016-11-21T00:00:00Z,3,20,burntbricks,2,no,never,2,radio;cow_plough;table;mobile_phone,2,none,uuid:1c54ee24-22c4-4ee9-b1ad-42d483c08e2e +27,Ruaca,2016-11-21T00:00:00Z,7,36,burntbricks,2,NULL,NULL,3,bicycle;radio;cow_plough;solar_panel;solar_torch;mobile_phone,3,none,uuid:3197cded-1fdc-4c0c-9b10-cfcc0bf49c4d +28,Ruaca,2016-11-21T00:00:00Z,2,2,muddaub,1,no,more_once,1,NULL,3,Aug;Sept;Oct,uuid:1de53318-a8cf-4736-99b1-8239f8822473 +29,Ruaca,2016-11-21T00:00:00Z,7,10,burntbricks,2,yes,frequently,1,motorcyle;bicycle;radio;table;mobile_phone,3,Jan;Feb,uuid:adcd7463-8943-4c67-b25f-f72311409476 +30,Ruaca,2016-11-21T00:00:00Z,7,22,muddaub,2,NULL,NULL,1,bicycle;radio;mobile_phone,2,Jan;Feb,uuid:59341ead-92be-45a9-8545-6edf9f94fdc6 +31,Ruaca,2016-11-21T00:00:00Z,3,2,muddaub,1,NULL,NULL,1,NULL,3,none,uuid:cb06eb49-dd39-4150-8bbe-a599e074afe8 +32,Ruaca,2016-11-21T00:00:00Z,19,69,muddaub,2,yes,more_once,5,cow_cart;motorcyle;radio;cow_plough;solar_panel;mobile_phone,2,none,uuid:25597af3-cd79-449c-a48a-fb9aea6c48bf +33,Ruaca,2016-11-21T00:00:00Z,8,34,muddaub,1,no,more_once,2,cow_cart;lorry;motorcyle;sterio;cow_plough;solar_panel;mobile_phone,2,none,uuid:0fbd2df1-2640-4550-9fbd-7317feaa4758 +34,Chirodzo,2016-11-17T00:00:00Z,8,18,burntbricks,3,yes,more_once,3,television;radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,2,Jan;Dec,uuid:14c78c45-a7cc-4b2a-b765-17c82b43feb4 +35,Chirodzo,2016-11-17T00:00:00Z,5,45,muddaub,1,yes,more_once,2,bicycle;cow_plough,3,Jan;Sept;Oct;Nov;Dec,uuid:ff7496e7-984a-47d3-a8a1-13618b5683ce +36,Chirodzo,2016-11-17T00:00:00Z,6,23,sunbricks,1,yes,once,3,cow_cart;bicycle;radio;cow_plough;solar_panel;mobile_phone,3,none,uuid:c90eade0-1148-4a12-8c0e-6387a36f45b1 +37,Chirodzo,2016-11-17T00:00:00Z,3,8,burntbricks,1,NULL,NULL,2,bicycle;television;radio;cow_plough;solar_panel;solar_torch;mobile_phone,3,Jan;Nov;Dec,uuid:408c6c93-d723-45ef-8dee-1b1bd3fe20cd +38,God,2016-11-17T00:00:00Z,10,19,muddaub,1,yes,never,3,bicycle;radio;cow_plough;solar_panel;table;mobile_phone,3,Nov,uuid:81309594-ff58-4dc1-83a7-72af5952ee08 +39,God,2016-11-17T00:00:00Z,6,22,muddaub,1,NULL,NULL,1,NULL,3,Nov,uuid:c0fb6310-55af-4831-ae3d-2729556c3285 +40,God,2016-11-17T00:00:00Z,9,23,burntbricks,1,yes,never,1,bicycle;radio;cow_plough;solar_panel;table;mobile_phone,3,Sept;Oct;Nov,uuid:c0b34854-eede-4e81-b183-ef58a45bfc34 +41,God,2016-11-17T00:00:00Z,7,22,muddaub,1,NULL,NULL,2,motorcyle;bicycle;radio;cow_plough;table,3,Oct;Nov,uuid:b3ba34d8-eea1-453d-bc73-c141bcbbc5e5 +42,God,2016-11-17T00:00:00Z,8,8,sunbricks,1,no,never,3,mobile_phone,3,Jan;Nov;Dec,uuid:e3a1dd8a-1bda-428c-a014-2b527f11ae64 +43,Chirodzo,2016-11-17T00:00:00Z,7,29,muddaub,1,no,never,2,cow_plough;mobile_phone,2,Jan;Feb;Oct;Nov;Dec,uuid:b4dff49f-ef27-40e5-a9d1-acf287b47358 +44,Chirodzo,2016-11-17T00:00:00Z,2,6,muddaub,1,NULL,NULL,3,radio;solar_torch,2,Jan;Dec,uuid:f9fadf44-d040-4fca-86c1-2835f79c4952 +45,Chirodzo,2016-11-17T00:00:00Z,9,7,muddaub,1,no,never,4,motorcyle;bicycle;television;radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,3,none,uuid:e3554d22-35b1-4fb9-b386-dd5866ad5792 +46,Chirodzo,2016-11-17T00:00:00Z,10,42,burntbricks,2,no,once,2,motorcyle;computer;television;sterio;solar_panel;solar_torch;table;mobile_phone,2,Sept;Oct;Nov,uuid:35f297e0-aa5d-4149-9b7b-4965004cfc37 +47,Chirodzo,2016-11-17T00:00:00Z,2,2,muddaub,1,yes,once,1,solar_torch;mobile_phone,3,none,uuid:2d0b1936-4f82-4ec3-a3b5-7c3c8cd6cc2b +48,Chirodzo,2016-11-16T00:00:00Z,7,58,muddaub,1,NULL,NULL,3,radio,3,June;July;Aug;Sept;Oct;Nov,uuid:e180899c-7614-49eb-a97c-40ed013a38a2 +49,Chirodzo,2016-11-16T00:00:00Z,6,26,burntbricks,2,NULL,NULL,2,bicycle;radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,3,Jan;Nov;Dec,uuid:2303ebc1-2b3c-475a-8916-b322ebf18440 +50,Chirodzo,2016-11-16T00:00:00Z,6,7,muddaub,1,yes,never,1,solar_torch,2,June;July;Aug;Sept;Oct;Nov;Dec,uuid:4267c33c-53a7-46d9-8bd6-b96f58a4f92c +51,Chirodzo,2016-11-16T00:00:00Z,5,30,muddaub,1,NULL,NULL,1,radio,3,Oct;Nov,uuid:18ac8e77-bdaf-47ab-85a2-e4c947c9d3ce +52,Chirodzo,2016-11-16T00:00:00Z,11,15,burntbricks,3,no,never,3,motorcyle;television;radio;cow_plough;solar_panel;mobile_phone,3,Aug;Sept;Oct;Nov,uuid:6db55cb4-a853-4000-9555-757b7fae2bcf +21,Chirodzo,2016-11-16T00:00:00Z,8,16,burntbricks,3,yes,frequently,2,bicycle;radio;mobile_phone,2,Nov,uuid:cc7f75c5-d13e-43f3-97e5-4f4c03cb4b12 +54,Chirodzo,2016-11-16T00:00:00Z,7,15,muddaub,1,no,never,1,NULL,2,Sept;Oct;Nov,uuid:273ab27f-9be3-4f3b-83c9-d3e1592de919 +55,Chirodzo,2016-11-16T00:00:00Z,9,23,muddaub,2,NULL,NULL,1,television;cow_plough;mobile_phone,2,Oct;Nov,uuid:883c0433-9891-4121-bc63-744f082c1fa0 +56,Chirodzo,2016-11-16T00:00:00Z,12,23,burntbricks,2,yes,never,2,motorcyle;bicycle;mobile_phone,3,none,uuid:973c4ac6-f887-48e7-aeaf-4476f2cfab76 +57,Chirodzo,2016-11-16T00:00:00Z,4,27,burntbricks,1,no,never,1,radio,2,none,uuid:a7184e55-0615-492d-9835-8f44f3b03a71 +58,Chirodzo,2016-11-16T00:00:00Z,11,45,burntbricks,3,no,never,3,motorcyle;bicycle;television;radio;cow_plough;solar_panel;mobile_phone,2,none,uuid:a7a3451f-cd0d-4027-82d9-8dcd1234fcca +59,Chirodzo,2016-11-16T00:00:00Z,2,60,muddaub,3,NULL,NULL,3,NULL,2,none,uuid:1936db62-5732-45dc-98ff-9b3ac7a22518 +60,Chirodzo,2016-11-16T00:00:00Z,8,15,burntbricks,2,no,never,4,cow_plough,2,none,uuid:85465caf-23e4-4283-bb72-a0ef30e30176 +61,Chirodzo,2016-11-16T00:00:00Z,10,14,muddaub,1,yes,more_once,3,cow_cart;motorcyle;bicycle;television;radio;cow_plough;solar_panel;table;mobile_phone,3,Jan;Feb;Dec,uuid:2401cf50-8859-44d9-bd14-1bf9128766f2 +62,Chirodzo,2016-11-16T00:00:00Z,5,5,muddaub,1,NULL,NULL,1,bicycle;radio;mobile_phone,3,Aug;Sept;Oct;Nov,uuid:c6597ecc-cc2a-4c35-a6dc-e62c71b345d6 +63,Chirodzo,2016-11-16T00:00:00Z,4,10,muddaub,1,NULL,NULL,1,NULL,3,Jan;Oct;Nov;Dec,uuid:86ed4328-7688-462f-aac7-d6518414526a +64,Chirodzo,2016-11-16T00:00:00Z,6,1,muddaub,1,NULL,NULL,1,bicycle;solar_torch;table;sofa_set;mobile_phone,3,Jan;Feb;Dec,uuid:28cfd718-bf62-4d90-8100-55fafbe45d06 +65,Chirodzo,2016-11-16T00:00:00Z,8,20,burntbricks,3,no,once,3,motorcyle;radio;cow_plough;table,3,Jan;Feb;Mar,uuid:143f7478-0126-4fbc-86e0-5d324339206b +66,Chirodzo,2016-11-16T00:00:00Z,10,37,burntbricks,3,yes,frequently,4,cow_cart;motorcyle;bicycle;television;radio;cow_plough;solar_panel;solar_torch;mobile_phone,3,none,uuid:a457eab8-971b-4417-a971-2e55b8702816 +67,Chirodzo,2016-11-16T00:00:00Z,5,31,burntbricks,2,no,more_once,4,motorcyle;radio;cow_plough;solar_panel;mobile_phone,3,none,uuid:6c15d667-2860-47e3-a5e7-7f679271e419 +68,Chirodzo,2016-11-16T00:00:00Z,8,52,burntbricks,3,no,more_once,3,motorcyle;television;sterio;solar_panel;mobile_phone,3,none,uuid:ef04b3eb-b47d-412e-9b09-4f5e08fc66f9 +69,Chirodzo,2016-11-16T00:00:00Z,4,12,muddaub,1,no,more_once,1,bicycle;radio;solar_torch;mobile_phone,3,none,uuid:f86933a5-12b8-4427-b821-43c5b039401d +70,Chirodzo,2016-11-16T00:00:00Z,8,25,burntbricks,2,no,more_once,4,cow_cart;bicycle;radio;cow_plough;solar_panel;mobile_phone,2,none,uuid:1feb0108-4599-4bf9-8a07-1f5e66a50a0a +71,Ruaca,2016-11-18T00:00:00Z,6,14,burntbricks,1,yes,more_once,3,radio;cow_plough;mobile_phone,2,Aug;Sept;Oct;Nov,uuid:761f9c49-ec93-4932-ba4c-cc7b78dfcef1 +127,Chirodzo,2016-11-16T00:00:00Z,4,18,burntbricks,8,NULL,NULL,1,mobile_phone,2,Aug;Sept;Oct,uuid:f6d04b41-b539-4e00-868a-0f62b427587d +133,Ruaca,2016-11-23T00:00:00Z,5,25,burntbricks,2,no,never,5,cow_cart;car;lorry;motorcyle;bicycle;television;sterio;cow_plough;solar_panel;solar_torch;electricity;table;sofa_set;mobile_phone;fridge,3,Jan;Oct;Nov,uuid:429d279a-a519-4dcc-9f64-4673b0fd5d53 +152,Ruaca,2016-11-24T00:00:00Z,10,16,burntbricks,1,yes,once,3,motorcyle;bicycle;radio;sterio;cow_plough;solar_panel;mobile_phone,3,none,uuid:59738c17-1cda-49ee-a563-acd76f6bc487 +153,Ruaca,2016-11-24T00:00:00Z,5,41,burntbricks,1,NULL,NULL,1,NULL,2,Oct;Nov,uuid:7e7961ca-fa1c-4567-9bfa-a02f876e4e03 +155,God,2016-11-24T00:00:00Z,4,4,burntbricks,1,NULL,NULL,1,electricity,2,Jan;Sept;Oct;Nov;Dec,uuid:77b3021b-a9d6-4276-aaeb-5bfcfd413852 +178,Ruaca,2016-11-25T00:00:00Z,5,79,burntbricks,2,yes,frequently,3,radio;cow_plough;solar_panel;mobile_phone,3,none,uuid:2186e2ec-f65a-47cc-9bc1-a0f36dd9591c +177,God,2016-11-25T00:00:00Z,10,13,sunbricks,1,no,more_once,2,motorcyle;television;cow_plough;solar_panel;mobile_phone,3,Nov,uuid:87998c33-c8d2-49ec-9dae-c123735957ec +180,Ruaca,2016-11-25T00:00:00Z,7,50,muddaub,1,no,never,3,cow_plough;solar_panel,3,Oct;Nov,uuid:ece89122-ea99-4378-b67e-a170127ec4e6 +181,God,2016-11-25T00:00:00Z,11,25,sunbricks,2,yes,more_once,3,cow_cart;motorcyle;bicycle;television;radio;cow_plough;solar_panel;mobile_phone,3,none,uuid:bf373763-dca5-4906-901b-d1bacb4f0286 +182,God,2016-11-25T00:00:00Z,7,21,muddaub,3,no,more_once,2,solar_panel,3,Jan;Feb;Nov;Dec,uuid:394033e8-a6e2-4e39-bfac-458753a1ed78 +186,God,2016-11-28T00:00:00Z,7,24,muddaub,1,no,more_once,2,cow_plough;mobile_phone,3,none,uuid:268bfd97-991c-473f-bd51-bc80676c65c6 +187,God,2016-11-28T00:00:00Z,5,43,muddaub,2,yes,more_once,4,cow_cart;motorcyle;bicycle;television;radio;cow_plough;solar_panel;solar_torch;mobile_phone,3,none,uuid:0a42c9ee-a840-4dda-8123-15c1bede5dfc +195,God,2016-11-28T00:00:00Z,5,48,burntbricks,1,no,never,3,cow_cart;bicycle;radio;cow_plough;solar_torch,2,Sept;Oct;Nov,uuid:2c132929-9c8f-450a-81ff-367360ce2c19 +196,God,2016-11-28T00:00:00Z,7,49,burntbricks,2,yes,more_once,3,radio;cow_plough;mobile_phone,3,none,uuid:44e427d1-a448-4bf2-b529-7d67b2266c06 +197,God,2016-11-28T00:00:00Z,5,19,burntbricks,2,no,more_once,3,bicycle;television;radio;cow_plough;solar_torch;table;mobile_phone,2,Nov,uuid:85c99fd2-775f-40c9-8654-68223f59d091 +198,God,2016-11-28T00:00:00Z,3,49,burntbricks,1,no,never,1,NULL,3,Nov,uuid:28c64954-739c-444c-a6e0-355878e471c8 +201,God,2016-11-21T00:00:00Z,4,6,muddaub,2,NULL,NULL,2,bicycle;radio;solar_torch;mobile_phone,2,Oct;Nov;Dec,uuid:9e79a31c-3ea5-44f0-80f9-a32db49422e3 +202,God,2016-11-17T00:00:00Z,12,12,burntbricks,4,yes,more_once,3,cow_cart;radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,3,Jan;Feb;Mar;Oct;Nov;Dec,uuid:06d39051-38ef-4757-b68b-3327b1f16b9d +72,Ruaca,2017-04-26T00:00:00Z,6,24,muddaub,1,yes,more_once,3,bicycle;radio;cow_plough,2,Jan;Aug;Sept;Oct;Nov;Dec,uuid:c4a2c982-244e-45a5-aa4b-71fa53f99e18 +73,Ruaca,2017-04-26T00:00:00Z,7,9,burntbricks,2,yes,more_once,3,cow_cart;motorcyle;bicycle;television;radio;cow_plough;solar_panel;table;mobile_phone,3,Jan;Sept;Oct,uuid:ac3da862-9e6c-4962-94b6-f4c31624f207 +76,Ruaca,2017-04-26T00:00:00Z,17,48,burntbricks,2,yes,more_once,4,bicycle;radio;cow_plough;solar_panel;mobile_phone,3,none,uuid:4178a296-903a-4a8e-9cfa-0cd6143476e8 +83,Ruaca,2017-04-27T00:00:00Z,5,22,burntbricks,1,yes,never,2,radio;cow_plough;solar_torch,2,Aug;Sept;Oct,uuid:a1e9df00-c8ae-411c-931c-c7df898c68d0 +85,Ruaca,2017-04-27T00:00:00Z,7,40,sunbricks,1,no,never,2,radio;cow_plough,2,Oct;Nov,uuid:4d0f472b-f8ae-4026-87c9-6b5be14b0a70 +89,God,2017-04-27T00:00:00Z,5,10,burntbricks,2,no,never,3,bicycle;radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,3,Oct;Nov,uuid:b3b309c6-f234-4830-8b30-87d26a17ee1d +101,God,2017-04-27T00:00:00Z,3,4,muddaub,1,no,never,1,bicycle;solar_torch,3,Sept;Oct;Nov,uuid:3c174acd-e431-4523-9ad6-eb14cddca805 +103,Ruaca,2017-04-27T00:00:00Z,6,96,sunbricks,1,no,never,5,cow_cart;cow_plough;solar_panel;sofa_set;mobile_phone,3,Jan;Feb;Dec,uuid:e9d79844-ef14-493b-bbd6-d13691cc660e +102,Ruaca,2017-04-28T00:00:00Z,12,15,burntbricks,2,yes,frequently,2,cow_plough;table;sofa_set;mobile_phone,3,Jan;Feb,uuid:76206b0b-af74-4344-b24f-81e839f0d7b0 +78,Ruaca,2017-04-28T00:00:00Z,6,48,burntbricks,1,no,more_once,2,cow_plough,2,Aug;Sept;Oct,uuid:da3fa7cc-5ce9-44fd-9a78-b8982b607515 +80,Ruaca,2017-04-28T00:00:00Z,5,12,muddaub,1,no,more_once,1,cow_cart;bicycle;radio;cow_plough;solar_panel;solar_torch,3,none,uuid:a85df6df-0336-46fa-a9f4-522bf6f8b438 +104,Ruaca,2017-04-28T00:00:00Z,14,52,sunbricks,1,yes,never,4,cow_cart;bicycle;cow_plough,3,Jan;Feb;Dec,uuid:bb2bb365-7d7d-4fe9-9353-b21269676119 +105,Ruaca,2017-04-28T00:00:00Z,6,40,sunbricks,1,yes,frequently,2,motorcyle;radio;cow_plough;solar_panel;mobile_phone,3,Jan;Feb;Dec,uuid:af0904ee-4fdb-4090-973f-599c81ddf022 +106,God,2017-04-30T00:00:00Z,15,22,sunbricks,5,no,never,2,cow_cart;motorcyle;bicycle;radio;sterio;cow_plough;solar_panel;solar_torch;table;mobile_phone,3,Oct;Nov;Dec,uuid:468797c1-4a65-4f35-9c83-e28ce46972a2 +109,God,2017-05-03T00:00:00Z,4,12,sunbricks,1,NULL,NULL,3,cow_cart;bicycle;radio;cow_plough;table,3,July;Aug;Sept;Oct;Nov,uuid:602cd3f6-4a97-49c6-80e3-bcfd5c78dfa4 +110,Ruaca,2017-05-03T00:00:00Z,6,22,sunbricks,3,no,never,3,bicycle;radio;cow_plough;table;mobile_phone,2,none,uuid:e7c51ac4-24e4-475e-88e7-f85e896945e3 +113,Ruaca,2017-05-03T00:00:00Z,11,26,burntbricks,3,no,never,4,cow_cart;motorcyle;bicycle;radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,3,none,uuid:01210861-aba1-4268-98d0-0260e05f5155 +118,Ruaca,2017-05-04T00:00:00Z,5,25,muddaub,1,NULL,NULL,1,radio;solar_torch;mobile_phone,3,Oct;Nov;Dec,uuid:77335b2e-8812-4a35-b1e5-ca9ab626dfea +125,Ruaca,2017-05-04T00:00:00Z,5,14,burntbricks,1,no,more_once,2,bicycle;radio;cow_plough;solar_panel;solar_torch;mobile_phone,3,Jan;Sept;Oct;Nov;Dec,uuid:02b05c68-302e-4e7a-b229-81cb1377fd29 +119,Ruaca,2017-05-04T00:00:00Z,3,14,muddaub,1,no,never,4,bicycle;cow_plough;solar_panel;mobile_phone,3,none,uuid:fa201fce-4e94-44b8-b435-c558c2e1ed55 +115,Ruaca,2017-05-11T00:00:00Z,4,16,sunbricks,2,NULL,NULL,3,cow_cart;motorcyle;bicycle;television;radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,3,none,uuid:628fe23d-188f-43e4-a203-a4bf3257d461 +108,God,2017-05-11T00:00:00Z,15,22,burntbricks,2,no,never,4,cow_cart;bicycle;radio;cow_plough;solar_panel;table;mobile_phone,3,Aug;Sept;Oct;Nov,uuid:e4f4d6ba-e698-45a5-947f-ba6da88cc22b +116,Ruaca,2017-05-11T00:00:00Z,5,25,burntbricks,3,NULL,NULL,3,motorcyle;bicycle;television;radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,3,Jan;Nov;Dec,uuid:cfee6297-2c0e-4f8a-94cc-9aaee0bd64cb +117,Ruaca,2017-05-11T00:00:00Z,10,28,muddaub,4,NULL,NULL,1,motorcyle;television;radio;solar_panel;solar_torch;table;mobile_phone,3,Jan;Feb;Nov;Dec,uuid:3fe626b3-c794-48e1-a80f-5bfe440c507b +144,Ruaca,2017-05-18T00:00:00Z,7,5,burntbricks,4,no,frequently,4,cow_cart;television;radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,2,none,uuid:0670cef6-d233-4852-89d8-36955261b0a3 +143,Ruaca,2017-05-18T00:00:00Z,10,24,burntbricks,2,no,frequently,3,cow_cart;motorcyle;television;radio;cow_plough;solar_torch;table;mobile_phone,3,Jan;Dec,uuid:9a096a12-b335-468c-b3cc-1191180d62de +150,Ruaca,2017-05-18T00:00:00Z,7,8,muddaub,1,no,never,1,mobile_phone,3,Sept;Oct;Nov,uuid:92613d0d-e7b1-4d62-8ea4-451d7cd0a982 +159,God,2017-05-18T00:00:00Z,4,24,sunbricks,1,no,never,1,radio;solar_panel;solar_torch,3,Sept;Oct;Nov,uuid:37577f91-d665-443e-8d70-b914954cef4b +160,God,2017-06-03T00:00:00Z,7,13,burntbricks,2,yes,frequently,2,cow_cart;cow_plough;solar_torch;mobile_phone,2,Nov,uuid:f22831ec-6bc3-4b73-9197-4b01e01abb66 +165,Ruaca,2017-06-03T00:00:00Z,9,14,burntbricks,1,no,never,3,cow_cart;motorcyle;bicycle;television;radio;cow_plough;solar_torch;electricity;table;sofa_set;mobile_phone;fridge,3,none,uuid:62f3f7af-f0f3-4f88-b9e0-acf8baa49ae4 +166,Ruaca,2017-06-03T00:00:00Z,11,16,muddaub,1,no,never,1,bicycle;solar_torch;mobile_phone,2,Feb;Mar,uuid:40aac732-94df-496c-97ba-5b67f59bcc7a +167,Ruaca,2017-06-03T00:00:00Z,8,24,muddaub,1,no,never,3,motorcyle;radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,2,Jan;Nov;Dec,uuid:a9d1a013-043b-475d-a71b-77ed80abe970 +174,Ruaca,2017-06-03T00:00:00Z,12,25,burntbricks,2,no,never,3,car;lorry;motorcyle;radio;sterio;cow_plough;solar_panel;solar_torch;table;sofa_set;mobile_phone;fridge,3,Jan;Feb;Dec,uuid:43ec6132-478c-4f87-878d-fb3c0c4d0c74 +175,Ruaca,2017-06-03T00:00:00Z,7,36,burntbricks,1,no,never,4,motorcyle;bicycle;radio;sterio;cow_plough;solar_panel;table;mobile_phone,2,Jan;Oct;Nov;Dec,uuid:64fc743e-8176-40f6-8ae4-36ae97fac1d9 +189,Ruaca,2017-06-03T00:00:00Z,15,16,sunbricks,1,no,never,3,motorcyle;radio;sterio;cow_plough;solar_panel;table;mobile_phone,3,Nov,uuid:c17e374c-280b-4e78-bf21-74a7c1c73492 +191,Ruaca,2017-06-03T00:00:00Z,10,5,burntbricks,4,no,never,1,radio;cow_plough;solar_panel;solar_torch;mobile_phone,2,Oct;Nov;Dec,uuid:dad53aff-b520-4015-a9e3-f5fdf9168fe1 +192,Chirodzo,2017-06-03T00:00:00Z,9,20,burntbricks,1,no,once,1,bicycle;television;radio;sterio;solar_panel;solar_torch;table;mobile_phone,3,Jan;Nov;Dec,uuid:f94409a6-e461-4e4c-a6fb-0072d3d58b00 +126,Ruaca,2017-05-18T00:00:00Z,3,7,burntbricks,1,no,more_once,3,motorcyle;radio;solar_panel,3,Oct;Nov;Dec,uuid:69caea81-a4e5-4e8d-83cd-9c18d8e8d965 +193,Ruaca,2017-06-04T00:00:00Z,7,10,cement,3,no,more_once,3,car;lorry;television;radio;sterio;cow_plough;solar_torch;electricity;table;sofa_set;mobile_phone;fridge,3,none,uuid:5ccc2e5a-ea90-48b5-8542-69400d5334df +194,Ruaca,2017-06-04T00:00:00Z,4,5,muddaub,1,no,more_once,1,radio;solar_panel;solar_torch;mobile_phone,3,Sept;Oct;Nov,uuid:95c11a30-d44f-40c4-8ea8-ec34fca6bbbf +199,Chirodzo,2017-06-04T00:00:00Z,7,17,burntbricks,2,yes,more_once,2,cow_cart;lorry;motorcyle;computer;television;radio;sterio;cow_plough;solar_panel;solar_torch;electricity;mobile_phone,3,Nov;Dec,uuid:ffc83162-ff24-4a87-8709-eff17abc0b3b +200,Chirodzo,2017-06-04T00:00:00Z,8,20,burntbricks,2,NULL,NULL,3,radio;cow_plough;solar_panel;solar_torch;table;mobile_phone,3,Oct;Nov,uuid:aa77a0d7-7142-41c8-b494-483a5b68d8a7 \ No newline at end of file diff --git a/data/SAFI_from_JSON.csv b/data/SAFI_from_JSON.csv new file mode 100644 index 000000000..d29e69140 --- /dev/null +++ b/data/SAFI_from_JSON.csv @@ -0,0 +1,1463 @@ +C06_rooms,B19_grand_liv,A08_ward,E01_water_use,B18_sp_parents_liv,B16_years_liv,E_yes_group_count,F_liv,_note2,instanceID,B20_sp_grand_liv,F10_liv_owned_other,_note1,F12_poultry,D_plots_count,C02_respondent_wall_type_other,C02_respondent_wall_type,C05_buildings_in_compound,_remitters,E18_months_no_water,F07_use_income,G01_no_meals,E17_no_enough_water,F04_need_money,A05_end,C04_window_type,E21_other_meth,D_no_plots,F05_money_source,A07_district,C03_respondent_floor_type,E_yes_group,A01_interview_date,B11_remittance_money,A04_start,D_plots,F_items,F_liv_count,F10_liv_owned,B_no_membrs,F13_du_look_aftr_cows,E26_affect_conflicts,F14_items_owned,F06_crops_contr,B17_parents_liv,G02_months_lack_food,A11_years_farm,F09_du_labour,E_no_group_count,E22_res_change,E24_resp_assoc,A03_quest_no,_members,A06_province,gps:Accuracy,E20_exper_other,A09_village,C01_respondent_roof_type,gps:Altitude,gps:Longitude,E23_memb_assoc,E19_period_use,E25_fees_water,C07_other_buildings,observation,_note,A12_agr_assoc,G03_no_food_mitigation,F05_money_source_other,gps:Latitude,E_no_group,F14_items_owned_other,F08_emply_lab,_members_count +1,no,ward2,no,yes,4,NA,"list(F11_no_owned = 1, F_curr_liv = ""poultry"")","NA",uuid:ec241f2c-0609-46ed-b5e8-fe575f6cefef,yes,"NA","NA",yes,2,"NA",muddaub,1,list(),NULL,NA,2,NA,NA,2017-04-02T17:29:08.000Z,no,NA,2,NULL,district1,earth,list(),2016-11-17,no,2017-03-23T09:49:57.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(0.5, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 4, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), + list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 360, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 3, D16_imprv_seed = ""no"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Iniciou um negócio"", ""Comorou radio"", ""Comprou uma Biscleta""), F03_year = c(2011, 2012, 2012), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",1,poultry,3,no,NA,"c(""bicycle"", ""television"", ""solar_panel"", ""table"")",NA,no,Jan,11,no,2,NULL,NA,01,"list(B06_memb_education = c(""sec_3"", ""pri_7"", ""na""), B05_memb_age = c(27, 19, 1), B02_memb_gender = c(""male"", ""female"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA), B_memb_no = 1:3, B08_interviewee_activities = list(""small_scale_farm"", + c(""housework"", ""small_scale_farm""), ""na""), B03_relationship_du_other = c(NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA))",province1,14,NA,village2,grass,698,33.48345609,NA,"NA",NA,no,None,"NA",no,"c(""na"", ""rely_less_food"", ""reduce_meals"", ""day_night_hungry"")","NA",-19.11225943,"list(E04_res_water_field = c(""no_need"", ""no_need""), E03_crops = list(""maize"", ""maize""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""no"", ""no""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",no,3 +1,yes,ward2,yes,yes,9,3,"list(F11_no_owned = c(4, 3, 4), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:099de9c9-3e5e-427b-8452-26250e840d6e,yes,"NA","NA",yes,3,"NA",muddaub,1,list(),"c(""Aug"", ""Sept"")",Alimentação e pagamento de educação dos filhos,2,yes,no,2017-04-02T17:26:19.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""tomatoes"", ""vegetable""), E09_irr_manager = list(NULL, ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""middle"", ""middle""), E16_amount_pay = c(NA, 1000, 1000), E15_duration = c(NA, ""month"", ""month""), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""rented"", ""rented""), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity"" +), E10_water_source = c(NA, ""canal"", ""canal""), E06_plot_no = 1:3)",2016-11-17,no,2017-04-02T09:48:16.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""vegetable""), D01_curr_plot = c(3, 2, 3), D02_total_plot = c(1, 1.5, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 80, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 400, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 180, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", + D21_cost_labour = 1800, D17_cost_seed = NA, D12_harvst_amount = 180, D16_imprv_seed = ""no"", D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""bags"", + D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 12, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 1200, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 120, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1.8)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Compra da Machamba"", ""Comprou Talhão""), F03_year = c(2016, 2016), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",7,no,once,"c(""cow_cart"", ""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",more_half,yes,"c(""Jan"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")",2,no,NA,NULL,no,01,"list(B06_memb_education = c(""sec_1"", ""none"", ""pri_1"", ""pri_5"", ""na"", ""none"", ""na""), B05_memb_age = c(22, 47, 7, 11, 6, 4, 2), B02_memb_gender = c(""female"", ""male"", ""male"", ""male"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""na"", ""na"", ""na""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list( + ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,19,yes,village2,grass,690,33.48341568,yes,2,no,no,Estes primeiros inquéritos nao tinhamos GPS introduzias is dados o tablet depois de preenchimento e tirava as cordenadas.,"NA",yes,"c(""na"", ""reduce_meals"", ""restrict_adults"", ""borrow_food"", ""seek_government"")","NA",-19.11247712,list(),"NA",yes,7 +1,no,ward2,no,no,15,NA,list(),"NA",uuid:193d7daf-9582-409b-bf09-027dd36f9007,no,"NA","NA",yes,1,"NA",burntbricks,1,list(),NULL,NA,2,NA,NA,2017-04-02T17:26:53.000Z,yes,NA,1,NULL,district1,cement,list(),2016-11-17,no,2017-04-02T14:35:26.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 1, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 3, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = c(""Educação dos filhos"", ""Construção de habitação""), F03_year = c(2016, 2007), F02_source_income = c(""Trabalho sazonal"", ""Trabalho sazonal""))",1,none,10,no,NA,solar_torch,NA,no,"c(""Jan"", ""Feb"", ""Mar"", ""Oct"", ""Nov"", ""Dec"")",40,yes,1,NULL,NA,03,"list(B06_memb_education = c(""none"", ""pri_5"", ""pri_1"", ""na"", ""na"", ""pri_7"", ""pri_4"", ""sec_1"", ""na"", ""na""), B05_memb_age = c(70, 30, 17, 1, 20, 18, 9, 14, 4, 5), B02_memb_gender = c(""female"", ""female"", ""male"", ""male"", ""male"", ""male"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""widow/er"", ""single"", ""single"", ""single"", ""single"", ""single"", ""unmarried"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Child"", ""Child"", ""Child"", +""Grandchild"", ""Grandchild"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), c(""housework"", +""small_scale_farm""), ""na"", ""na"", c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,13,NA,village2,mabatisloping,674,33.48344998,NA,"NA",NA,no,"Ponto Geográfico +Latitude: 18°54'4527324S +Longetude: 33°6'373207E +Altitude: 704m","NA",no,"c(""na"", ""restrict_adults"", ""lab_ex_food"")","NA",-19.1121076,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""no"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,10 +1,no,ward2,no,no,6,NA,"list(F11_no_owned = 3:4, F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:148d1105-778a-4755-aa71-281eadd4a973,no,"NA","NA",yes,3,"NA",burntbricks,1,list(),NULL,NA,2,NA,NA,2017-04-02T17:27:16.000Z,no,NA,3,NULL,district1,earth,list(),2016-11-17,no,2017-04-02T14:55:18.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize"", ""sorghum""), D01_curr_plot = 1:3, D02_total_plot = c(1, 1, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 4, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), + list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, + D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""sorghum"", D_repeat_times_count = ""1"", D05_times = 1)), + D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Radio"", ""O sistema solar""), F03_year = c(2016, 2016), F02_source_income = c(""Trabalho sazonal"", ""Trabalho sazonal""))",2,"c(""oxen"", ""cows"")",7,no,NA,"c(""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",NA,no,"c(""Sept"", ""Oct"", ""Nov"", ""Dec"")",6,yes,3,NULL,NA,04,"list(B06_memb_education = c(""none"", ""pri_1"", ""pri_3"", ""pri_2"", ""na"", ""na"", ""na""), B05_memb_age = c(50, 28, 20, 8, 3, 2, 1), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""female"", ""male"", ""female""), B04_memb_marital_status = c(""widow/er"", ""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""parent"", ""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), + B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,5,NA,village2,mabatisloping,679,33.48342395,NA,"NA",NA,no,Esta o 2nd lançamento de questionario. As cordenadas geográficas foram lançados no próprio dia no tablet e não foram registados no papel.,"NA",no,"c(""na"", ""reduce_meals"", ""restrict_adults"", ""lab_ex_food"")","NA",-19.11222901,"list(E04_res_water_field = c(""no_need"", ""no_need"", ""no_need""), E03_crops = list(""maize"", ""maize"", ""sorghum""), E04_res_water_field_other = c(NA, NA, NA), E05_tried_access = c(""no"", ""no"", ""no""), E05_tried_access_other = c(NA, NA, NA), E02_plot_no = 1:3)","NA",no,7 +1,yes,ward2,no,no,40,NA,"list(F11_no_owned = c(1, 4, 2, 13), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""poultry""))","NA",uuid:2c867811-9696-4966-9866-f35c3e97d02d,no,"NA","NA",yes,2,"NA",burntbricks,1,list(),NULL,NA,2,NA,NA,2017-04-02T17:27:35.000Z,no,NA,2,NULL,district1,earth,list(),2016-11-17,no,2017-04-02T15:10:35.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(1.5, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 4, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 3, D16_imprv_seed = ""no"", + D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))",list(),4,"c(""oxen"", ""cows"", ""goats"", ""poultry"")",7,no,NA,"c(""motorcyle"", ""radio"", ""cow_plough"", ""mobile_phone"")",NA,yes,"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")",18,no,2,NULL,NA,05,"list(B06_memb_education = c(""none"", ""sec_3"", ""pri_6"", ""pri_4"", ""pri_3"", ""na"", ""na""), B05_memb_age = c(57, 28, 24, 10, 9, 5, 2), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""widow/er"", ""married"", ""unmarried"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""other"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", +""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_business"", ""housework"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), c(""housework"", ""small_business""), ""housework"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, ""Nora"", NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,10,NA,village2,grass,689,33.48342524,NA,"NA",NA,no,"Esta é a 2a vez que o mesmo questionário esta sendo carregado no ODK, por isso que não traz as cordenadas geográficas.","NA",no,"c(""na"", ""go_forest"", ""migrate"")","NA",-19.11221722,"list(E04_res_water_field = c(""land_far"", ""land_far""), E03_crops = list(""maize"", ""maize""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""no"", ""no""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",no,7 +1,no,ward2,no,no,3,NA,list(),"NA",uuid:daa56c91-c8e3-44c3-a663-af6a49a2ca70,no,"NA","NA",no,1,"NA",muddaub,1,list(),NULL,NA,2,NA,NA,2017-04-02T17:28:02.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-17,no,2017-04-02T15:27:25.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 1.5, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)",list(),1,none,3,no,NA,NULL,NA,no,"c(""Aug"", ""Sept"", ""Oct"")",3,yes,1,NULL,NA,6,"list(B06_memb_education = c(""pri_1"", ""none"", ""pri_3""), B05_memb_age = c(33, 6, 9), B02_memb_gender = c(""female"", ""male"", ""male""), B04_memb_marital_status = c(""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA), B_memb_no = 1:3, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm"" +), ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA))",province1,12,NA,village2,grass,692,33.48339187,NA,"NA",NA,no,"Não existe cordenadas geográficas visto que lançou se no tablet depois de ter terminado a entrevista, e os inquiridores nao traziam ainda os GPS's.","NA",no,"c(""borrow_food"", ""lab_ex_food"", ""seek_government"")","NA",-19.1121959,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""no"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,3 +1,yes,ward2,yes,no,38,4,"list(F11_no_owned = 1, F_curr_liv = ""oxen"")","NA",uuid:ae20a58d-56f4-43d7-bafa-e7963d850844,no,"NA","NA",no,4,"NA",muddaub,1,list(),"c(""Aug"", ""Sept"", ""Oct"")",Alimentação,3,yes,no,2017-04-02T17:28:19.000Z,no,no,4,NULL,district1,earth,"list(E12_apply_water = c(""furrows"", ""furrows"", ""furrows"", ""furrows""), E08_crops = list(""maize"", ""tomatoes"", ""beans"", ""vegetable""), E09_irr_manager = list(""du_head"", ""du_head"", ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA, NA), E14_access_other = c(NA, NA, NA, NA), E08_crops_other = c(NA, NA, NA, NA), E13_plot_loc = c(""middle"", ""near"", ""near"", ""near""), E16_amount_pay = c(NA, NA, NA, NA), E15_duration = c(NA, NA, NA, NA), E07_bring = c(""yes"", ""yes"", ""yes"", ""yes""), E14_access = c(""inherited"", +""inherited"", ""inherited"", ""inherited""), E11_water_fields = c(""canal_gravity"", ""canal_gravity"", ""canal_gravity"", ""canal_gravity""), E10_water_source = c(""canal"", ""river"", ""river"", ""river""), E06_plot_no = 1:4)",2016-11-17,no,2017-04-02T15:38:01.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""beans"", ""vegetable""), D01_curr_plot = 1:4, D02_total_plot = c(2, 1, 1, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 50, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 47, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = 800, D12_harvst_amount = 47, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""own_manure""), D14_cost_fert = NA)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""tins"", + D19_pesticide_other = NA, D25_price = 1200, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2.5, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", + D13_fertilizer = list(""own_manure""), D14_cost_fert = NA)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""child""), D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 35, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, + D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 200, D12_harvst_amount = 35, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""own_manure""), D14_cost_fert = NA)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA, NA))","list(F01_item = c(""Construção de habitação"", ""Compra de cabeças de gado bovino""), F03_year = 2015:2016, F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",1,oxen,6,no,never,"c(""motorcyle"", ""cow_plough"")",more_half,yes,Nov,20,no,NA,NULL,NA,7,"list(B06_memb_education = c(""pri_1"", ""pri_5"", ""pri_4"", ""pri_5"", ""pri_5"", ""pri_3""), B05_memb_age = c(38, 16, 14, 14, 12, 10), B02_memb_gender = c(""male"", ""male"", ""female"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", + ""housework"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(""small_scale_farm"", ""housework"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,11,yes,village2,grass,709,33.48336498,no,10,no,yes,"Não temos as cordenadas geográficas porque haviamos feito direitamente no ODK, no tablet.","NA",no,lab_ex_food,"NA",-19.11221904,list(),"NA",no,6 +3,yes,ward1,yes,yes,70,2,"list(F11_no_owned = c(8, 5), F_curr_liv = c(""oxen"", ""goats""))","NA",uuid:d6cee930-7be1-4fd9-88c0-82a08f90fb5a,yes,"NA","NA",yes,2,"NA",burntbricks,2,list(),"c(""Sept"", ""Oct"")",Compra de produtos alimentícios,2,yes,no,2017-04-02T17:28:39.000Z,no,no,2,NULL,district1,cement,"list(E12_apply_water = c(""furrows"", ""furrows""), E08_crops = list(""maize"", ""maize""), E09_irr_manager = list(""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(""far"", ""far""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""yes"", ""yes""), E14_access = c(""inherited"", ""inherited""), E11_water_fields = c(""canal_gravity"", ""canal_gravity""), E10_water_source = c(""river"", ""river""), E06_plot_no = 1:2)",2016-11-16,no,2017-04-02T15:59:52.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(1, 2), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 750, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 10, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, + D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Compra de cabeças de gado bovino"", ""Compra de motorizada"", ""Compra de bicicleta"", ""Comprou de sistema solar"", ""Compra de televisor"", ""Compra de congelador"", ""Compra de chapas para cobertura da casa""), F03_year = c(2000, 2010, 2010, 2013, 2013, 2013, 2013), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", +""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""goats"")",12,no,never,"c(""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""fridge"")",abt_half,yes,Jan,16,no,NA,NULL,yes,08,"list(B06_memb_education = c(""pri_4"", ""none"", ""pri_3"", ""pri_6"", ""pri_7"", ""pri_5"", ""pri_1"", ""pri_1"", ""na"", ""na"", ""na"", ""na""), B05_memb_age = c(70, 43, 27, 18, 10, 8, 6, 5, 2, 1, 2, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female"", ""male"", ""male"", ""female"", ""female"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", +""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:12, + B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,9,yes,village1,mabatisloping,700,33.48341914,yes,10,no,yes,"Ponto geográfico +Latitude: 0512935 +Longetude: 7906703 +Altitude: 730.3m","NA",yes,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""restrict_adults"", ""borrow_food"")","NA",-19.11215963,list(),"NA",yes,12 +1,yes,ward2,yes,no,6,3,"list(F11_no_owned = c(3, 2, 9), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:846103d2-b1db-4055-b502-9cd510bb7b37,no,"NA","NA",yes,3,"NA",burntbricks,2,list(),"c(""Oct"", ""Nov"")",1,3,yes,no,2017-04-02T16:42:08.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""tomatoes"", ""vegetable""), E09_irr_manager = list(NULL, ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""inherited"", ""inherited""), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, +""river"", ""river""), E06_plot_no = 1:3)",2016-11-16,no,2017-04-02T16:23:36.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""vegetable""), D01_curr_plot = 1:3, D02_total_plot = c(1.5, 1, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 350, D19_pesticide = ""required_buyer"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 67, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 750, D22_sell = ""yes"", D20_paid_labour = ""yes"", + D21_cost_labour = 300, D17_cost_seed = NA, D12_harvst_amount = 67, D16_imprv_seed = ""no"", D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1750)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, + D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""required_buyer"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 17, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 750, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 300, D17_cost_seed = NA, D12_harvst_amount = 17, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1750)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Compra de cabeças de gado bovino"", ""Compra de aparelhagem sonora""), F03_year = 2008:2009, F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",8,no,never,"c(""television"", ""solar_panel"", ""solar_torch"")",more_half,yes,"c(""Jan"", ""Dec"")",16,yes,NA,NULL,NA,9,"list(B06_memb_education = c(""pri_5"", ""none"", ""pri_3"", ""pri_6"", ""pri_4"", ""na"", ""na"", ""na""), B05_memb_age = c(39, 32, 20, 15, 12, 4, 4, 2), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, +NA, NA, NA, NA, NA, NA, NA))",province1,11,yes,village1,grass,701,33.48343695,no,6,no,yes,"Ponto geográfico +Latitude: 0512721 +Longetude: 7906327 +Altitude: 740.5m","NA",no,"c(""rely_less_food"", ""limit_variety"", ""limit_portion"", ""restrict_adults"", ""lab_ex_food"")","NA",-19.11221518,list(),"NA",yes,8 +5,no,ward2,yes,no,23,2,"list(F11_no_owned = c(1, 3), F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:8f4e49bc-da81-4356-ae34-e0d794a23721,no,"NA","NA",yes,2,"NA",burntbricks,1,list(),"c(""Sept"", ""Oct"", ""Nov"")",Compra de produtos alimentícios e material escolar para os filhos,3,yes,no,2017-04-02T17:25:11.000Z,yes,no,2,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, ""parent""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2016-12-16,no,2017-04-02T17:03:28.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(3, 1.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 11, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""parent""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 700, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 24, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 750, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 250, D17_cost_seed = NA, + D12_harvst_amount = 24, D16_imprv_seed = ""no"", D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1400)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou motorizada"", ""Comprou televisor"", ""Comprou cabeças de gado bovino"", ""Comprou charua"", ""Construiu habitação""), F03_year = c(2014, 2014, 2002, 2002, 2012), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""cows"")",12,no,never,"c(""cow_cart"", ""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"")",more_half,no,"c(""Jan"", ""Oct"", ""Nov"", ""Dec"")",22,no,NA,NULL,NA,10,"list(B06_memb_education = c(""none"", ""pri_1"", ""pri_4"", ""pri_4"", ""pri_2"", ""pri_1"", ""na"", ""na"", ""na"", ""na"", ""sec_3"", ""pri_4""), B05_memb_age = c(30, 42, 13, 9, 7, 7, 5, 4, 2, 2, 20, 29), B02_memb_gender = c(""female"", ""male"", ""female"", ""male"", ""male"", ""male"", ""female"", ""male"", ""female"", ""female"", ""male"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", +""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""small_scale_farm""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:12, B08_interviewee_activities = list( + c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", c(""housework"", ""small_scale_farm"")), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,14,yes,village1,mabatisloping,710,33.48339436,no,22,no,no,"Ponto geográfico +Latitude: 0512972 +Longetude: 7906053 +Altitude: 723.1m","NA",no,"c(""rely_less_food"", ""limit_portion"", ""restrict_adults"", ""lab_ex_food"")","NA",-19.1122147,list(),"NA",yes,12 +1,no,ward2,no,yes,20,NA,"list(F11_no_owned = c(1, 3), F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:d29b44e3-3348-4afc-aa4d-9eb34c89d483,yes,"NA","NA",no,2,"NA",sunbricks,2,list(),NULL,NA,2,NA,NA,2017-04-03T03:31:10.000Z,no,NA,2,NULL,district1,earth,list(),2016-11-21,no,2017-04-03T03:16:15.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(1, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Oct"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Oct"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", + D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))",list(),2,"c(""oxen"", ""cows"")",6,no,NA,"c(""radio"", ""cow_plough"")",NA,yes,"c(""Oct"", ""Nov"")",6,yes,2,NULL,NA,11,"list(B06_memb_education = c(""pri_6"", ""pri_7"", ""pri_1"", ""none"", ""none"", ""na""), B05_memb_age = c(20, 26, 9, 7, 6, 1), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", + ""salar_job"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), c(""small_scale_farm"", ""salar_job""), ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,10,NA,village2,grass,707,33.48345933,NA,"NA",NA,no,"A entrevistada estava receiosa ao passar as informações, parecia como estivesse com dúvidas em relação as questões colocadas. + +Estq e a segunda vez que este questionário esta sendo lançado no ODK portando as coordenadas desta entrevista foram lançadas no","NA",no,"c(""rely_less_food"", ""lab_ex_food"")","NA",-19.11219126,"list(E04_res_water_field = c(""land_far"", ""land_far""), E03_crops = list(""maize"", ""maize""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""no"", ""no""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",no,6 +3,no,ward2,yes,no,20,2,"list(F11_no_owned = 3:2, F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:e6ee6269-b467-4e37-91fc-5e9eaf934557,no,"NA","NA",yes,2,"NA",burntbricks,2,"list(B13_remitter_location_village = ""Sussundenga"", B15_remitter_location_region_other = NA, B15_remitter_location_region = ""manica"", B14_remitter_location_district = ""Sussundenga"", B12_remittance_money_type = ""Pastor"")","c(""Aug"", ""Sept"", ""Oct"", ""Nov"")",Compra de produtos alimentícios,3,yes,no,2017-04-03T03:58:34.000Z,no,no,2,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"", ""child"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2016-11-21,yes,2017-04-03T03:31:13.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = c(2, 2), D02_total_plot = c(3.5, 1.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list()), D_curr_crop = ""maize"", D_repeat_times_count = ""0"", D05_times = 0), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, + D25_price = 700, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 10, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 760, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 1, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", + D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 2600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Comprou charua, tracção animal"", ""Construiu a sua moradia""), F03_year = c(2010, 2012, 2008), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""cows"")",7,no,never,"c(""cow_cart"", ""bicycle"", ""radio"", ""cow_plough"", ""table"")",more_half,no,"c(""Sept"", ""Oct"")",20,no,NA,NULL,no,12,"list(B06_memb_education = c(""pri_4"", ""none"", ""pri_4"", ""pri_4"", ""pri_3"", ""none"", ""na""), B05_memb_age = c(74, 84, 41, 14, 11, 6, 2), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", +""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), ""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,13,yes,village2,mabatisloping,696,33.48341504,yes,20,no,no,As cordenadas desta senhora foram lançadas no ODK no primeiro lançamento em Novembro e nao se registou no papel.,"NA",no,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""lab_ex_food"")","NA",-19.11229465,list(),"NA",no,7 +1,yes,ward2,yes,no,8,4,"list(F11_no_owned = c(6, 4, 10), F_curr_liv = c(""cows"", ""goats"", ""poultry""))","NA",uuid:6c00c145-ee3b-409c-8c02-2c8d743b6918,no,"NA","NA",yes,4,"NA",burntbricks,1,list(),Oct,Compra de produtos alimentícios e material escolar para os filhos,2,yes,no,2017-04-03T04:19:36.000Z,no,no,4,NULL,district1,earth,"list(E12_apply_water = c(NA, ""basin"", ""basin"", ""basin""), E08_crops = list(NULL, ""beans"", ""vegetable"", ""onion""), E09_irr_manager = list(NULL, c(""du_head"", ""spouse""), c(""du_head"", ""spouse""), c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA, NA, NA), E14_access_other = c(NA, NA, NA, NA), E08_crops_other = c(NA, NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near"", ""near""), E16_amount_pay = c(NA, NA, NA, NA), E15_duration = c(NA, NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes"", ""yes""), E14_access = c(NA, +""purchased"", ""purchased"", ""purchased""), E11_water_fields = c(NA, ""bucket"", ""bucket"", ""bucket""), E10_water_source = c(NA, ""river"", ""river"", ""river""), E06_plot_no = 1:4)",2016-11-21,no,2017-04-03T03:58:43.000Z,"list(D04_crops_harvsted = list(""maize"", ""beans"", ""vegetable"", ""onion""), D01_curr_plot = 1:4, D02_total_plot = c(12, 1, 1, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 12, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 400, D12_harvst_amount = 3, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 0.3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 3, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 50)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 0.3, D11_harvst_unit = ""bags"", + D19_pesticide_other = NA, D25_price = 200, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 16, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 16, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", + D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""du"", D06_mnth_harvest = ""Sept"", D08_land_planted = 0.3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 500, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 150, D12_harvst_amount = 4, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500)), D_curr_crop = ""onion"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA, +NA))","list(F01_item = c(""Comprou charua, tracção animal"", ""Comprou cabeças de gado caprino"", ""Construiu a sua moradia""), F03_year = 2012:2014, F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""cows"", ""goats"", ""poultry"")",6,no,never,"c(""bicycle"", ""radio"", ""cow_plough"", ""mobile_phone"")",more_half,yes,"c(""Sept"", ""Oct"", ""Nov"")",7,no,NA,NULL,NA,13,"list(B06_memb_education = c(""sec_1"", ""pri_7"", ""pri_7"", ""pri_3"", ""none"", ""na""), B05_memb_age = c(49, 45, 15, 9, 6, 3), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""comm_farming"", + ""comm_farming"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(c(""housework"", ""comm_farming""), c(""housework"", ""comm_farming""), ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,15,yes,village2,grass,706,33.48355635,no,7,no,no,"As cordenadas geográficas desta morada, não se encontra registada no papel, foi tirada directamente com o tablet no local depois da entrevista.","NA",yes,lab_ex_food,"NA",-19.11236935,list(),"NA",yes,6 +3,no,ward2,no,yes,20,NA,"list(F11_no_owned = c(1, 1, 5), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:9b21467f-1116-4340-a3b1-1ab64f13c87d,yes,"NA","NA",yes,3,"NA",burntbricks,3,list(),NULL,NA,3,NA,NA,2017-04-03T04:50:05.000Z,no,NA,3,NULL,district1,earth,list(),2016-11-21,no,2017-04-03T04:19:57.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize"", ""maize""), D01_curr_plot = 1:3, D02_total_plot = c(1, 1, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), + list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 15, + D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), + D03_unit_land_other = c(NA, NA, NA))","list(F01_item = ""Comprou bicicleta"", F03_year = 2008, F02_source_income = ""Renda proveniente da produção agrícola"")",3,"c(""oxen"", ""cows"", ""goats"")",10,no,NA,"c(""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""table"", ""mobile_phone"")",NA,yes,"c(""June"", ""July"", ""Aug"", ""Sept"", ""Oct"", ""Nov"")",20,yes,3,NULL,NA,14,"list(B06_memb_education = c(""sec_2"", ""pri_3"", ""pri_2"", ""pri_2"", ""pri_3"", ""pri_3"", ""na"", ""na"", ""na"", ""na""), B05_memb_age = c(31, 25, 73, 68, 10, 8, 4, 4, 5, 2), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""male"", ""male"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Child"", ""other"", ""head"", ""Spouse"", ""Grandchild"", ""Grandchild"", ""Grandchild"", +""Grandchild"", ""Grandchild"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""artisan""), ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list(c(""small_scale_farm"", ""artisan"" +), c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, ""Nora"", NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,11,NA,village2,grass,698,33.4834388,NA,"NA",NA,no,As cordenadas geográficas foram registados pelo ODK em Novembro e nao se lancou no papel.,"NA",yes,"c(""reduce_meals"", ""lab_ex_food"")","NA",-19.11222089,"list(E04_res_water_field = c(""land_far"", ""land_far"", ""land_far""), E03_crops = list(""maize"", ""maize"", ""maize""), E04_res_water_field_other = c(NA, NA, NA), E05_tried_access = c(""no"", ""no"", ""no""), E05_tried_access_other = c(NA, NA, NA), E02_plot_no = 1:3)","NA",yes,10 +2,yes,ward2,yes,yes,30,3,"list(F11_no_owned = c(1, 2, 7), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:a837e545-ff86-4a1c-a1a5-6186804b985f,yes,"NA","NA",yes,3,"NA",sunbricks,1,list(),"c(""Sept"", ""Oct"", ""Nov"")",Compra produtos alimentícios e produtos de higiene,2,yes,no,2017-04-03T05:28:44.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""beans"", ""ngogwe""), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"", ""child""), c(""du_head"", ""spouse"", ""child"")), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near""), E16_amount_pay = c(NA, 500, 500), E15_duration = c(NA, ""year"", ""year""), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""rented"", ""rented""), E11_water_fields = c(NA, +""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, ""river"", ""river""), E06_plot_no = 1:3)",2016-11-21,no,2017-04-03T05:12:17.000Z,"list(D04_crops_harvsted = list(""maize"", ""beans"", ""ngogwe""), D01_curr_plot = 1:3, D02_total_plot = c(15, 1, 0.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 6, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 7, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), + list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 0.5, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 760, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, + D12_harvst_amount = 3, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""spouse"", ""child"")), D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 0.5, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 130, D19_pesticide = ""own_choice"", + D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 65, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 760, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 65, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), + D_curr_crop = ""ngogwe"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Construiu a sua moradia"", ""Comprou radio"", ""Comprou bicicleta""), F03_year = c(2014, 2016, 2010), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",5,no,once,"c(""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""table"")",abt_half,yes,"c(""Jan"", ""Feb"", ""Mar"", ""Apr"", ""May"", ""June"", ""July"", ""Aug"", ""Sept"", ""Oct"", ""Nov"")",30,no,NA,NULL,no,15,"list(B06_memb_education = c(""pri_4"", ""pri_2"", ""sec_1"", ""pri_7"", ""pri_5""), B05_memb_age = c(59, 49, 16, 14, 12), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", + ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,9,yes,village2,grass,715,33.48339657,yes,30,no,yes,Como asemelhanca dos outros questionários as cordenadas geográficas deste nao foram registadas no papel.,"NA",yes,"c(""na"", ""rely_less_food"", ""limit_portion"", ""reduce_meals"", ""lab_ex_food"")","NA",-19.1120793,list(),"NA",no,5 +1,yes,ward2,no,yes,47,NA,"list(F11_no_owned = c(2, 6, 7, 8), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""poultry""))","NA",uuid:d17db52f-4b87-4768-b534-ea8f9704c565,yes,"NA","NA",no,1,"NA",muddaub,2,list(),NULL,NA,3,NA,NA,2017-04-03T05:40:53.000Z,yes,NA,1,NULL,district1,earth,list(),2016-11-24,no,2017-04-03T05:29:24.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 3.5, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 3.5, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)",list(),4,"c(""oxen"", ""cows"", ""goats"", ""poultry"")",6,no,NA,"c(""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"")",NA,yes,"c(""Jan"", ""Feb"")",24,yes,1,NULL,NA,16,"list(B06_memb_education = c(""pri_7"", ""pri_5"", ""sec_1"", ""pri_2"", ""na"", ""na""), B05_memb_age = c(47, 40, 20, 16, 1, 9), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""other""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", + ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(c(""small_scale_farm"", ""salar_job""), ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, ""Trabalhadora""), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,9,NA,village2,grass,709,33.48344397,NA,"NA",NA,yes,A semelhança dos outros questionários este tbem nao foi registado o ponto geográfico desta família.,"NA",yes,lab_ex_food,"NA",-19.11210678,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""no"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",yes,6 +1,no,ward2,no,no,20,NA,"list(F11_no_owned = 2, F_curr_liv = ""goats"")","NA",uuid:4707f3dc-df18-4348-9c2c-eec651e89b6b,no,"NA","NA",no,3,"NA",sunbricks,2,list(),NULL,NA,2,NA,NA,2017-04-03T05:57:57.000Z,no,NA,3,NULL,district1,earth,list(),2016-11-21,no,2017-04-03T05:41:42.000Z,"list(D04_crops_harvsted = list(""maize"", ""vegetable"", ""other""), D01_curr_plot = c(3, 2, 3), D02_total_plot = c(1, 0.3, 0.3), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, ""Inhame""), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 200, D12_harvst_amount = 2, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 0.3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = 50, D12_harvst_amount = 1, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Sept"", D08_land_planted = 0.3, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, + D25_price = 90, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 4, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""none""), D14_cost_fert = NA)), D_curr_crop = ""other"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou cabeças de gado caprino"", ""Comprou cabeças de gado caprino""), F03_year = c(2013, 2013), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",1,goats,8,yes,NA,mobile_phone,NA,no,"c(""Nov"", ""Dec"")",10,yes,3,NULL,NA,17,"list(B06_memb_education = c(""pri_5"", ""pri_6"", ""pri_1"", ""pri_4"", ""pri_2"", ""na"", ""na"", ""na""), B05_memb_age = c(30, 17, 17, 13, 12, 6, 4, 1), B02_memb_gender = c(""female"", ""male"", ""male"", ""female"", ""female"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""artisan"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(c(""housework"", ""small_business""), ""artisan"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA))",province1,10,NA,village2,grass,710,33.48346325,NA,"NA",NA,no,A semelhança dos outros questionários este também não tem pontos geográfico.,"NA",yes,lab_ex_food,"NA",-19.11218314,"list(E04_res_water_field = c(""land_far"", ""field_wet"", ""field_wet""), E03_crops = list(""maize"", ""vegetable"", ""holoco""), E04_res_water_field_other = c(NA, NA, NA), E05_tried_access = c(""no"", ""no"", ""no""), E05_tried_access_other = c(NA, NA, NA), E02_plot_no = 1:3)","NA",no,8 +1,no,ward2,no,yes,20,NA,"list(F11_no_owned = c(5, 2, 1), F_curr_liv = c(""goats"", ""pigs"", ""poultry""))","NA",uuid:7ffe7bd1-a15c-420c-a137-e1f006c317a3,yes,"NA","NA",yes,2,"NA",muddaub,1,list(),NULL,NA,2,NA,NA,2017-04-03T12:39:48.000Z,no,NA,2,NULL,district1,earth,list(),2016-11-21,no,2017-04-03T12:27:04.000Z,"list(D04_crops_harvsted = list(""maize"", ""pigeonpeas""), D01_curr_plot = 1:2, D02_total_plot = c(1, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 200, D12_harvst_amount = 1.5, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 0.3, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 40, D12_harvst_amount = 1, D16_imprv_seed = ""yes"", + D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""pigeonpeas"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Comprou um casal de porcos"", F03_year = 2015, F02_source_income = ""Renda proveniente da produção agrícola"")",3,"c(""goats"", ""pigs"", ""poultry"")",4,no,NA,"c(""bicycle"", ""mobile_phone"")",NA,yes,"c(""Oct"", ""Nov"")",6,yes,2,NULL,NA,18,"list(B06_memb_education = c(""none"", ""pri_5"", ""na"", ""na""), B05_memb_age = c(20, 20, 1, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA), + B_memb_no = 1:4, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm"", ""artisan""), ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA))",province1,17,NA,village2,grass,685,33.47630848,NA,"NA",NA,no,A semelhança dos outros questionários as cordenadas geográficas deste também nao foram registadas no papel.,"NA",no,"c(""reduce_meals"", ""lab_ex_food"")","NA",-19.11133515,"list(E04_res_water_field = c(""land_far"", ""land_far""), E03_crops = list(""maize"", ""pigeonpeas""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""no"", ""no""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",no,4 +2,yes,ward2,no,yes,23,NA,"list(F11_no_owned = c(5, 2), F_curr_liv = c(""oxen"", ""goats""))","NA",uuid:e32f2dc0-0d05-42fb-8e21-605757ddf07d,yes,"NA","NA",yes,2,"NA",burntbricks,1,list(),NULL,NA,3,NA,NA,2017-04-03T12:53:29.000Z,no,NA,2,NULL,district1,earth,list(),2016-11-21,no,2017-04-03T12:40:14.000Z,"list(D04_crops_harvsted = list(""maize"", ""beans""), D01_curr_plot = 1:2, D02_total_plot = c(5.5, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 4, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 1, D16_imprv_seed = ""no"", + D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Pagar despesas na educação dos filhos"", ""Compra de produtos alimentícios""), F03_year = c(2012, 2012), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""goats"")",9,no,NA,"c(""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""mobile_phone"")",NA,yes,"c(""Oct"", ""Nov"", ""Dec"")",20,yes,2,NULL,NA,19,"list(B06_memb_education = c(""pri_4"", ""pri_4"", ""pri_5"", ""na"", ""na"", ""pri_3"", ""na"", ""na"", ""na""), B05_memb_age = c(35, 32, 30, 1, 2, 8, 6, 2, 2), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""female"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", +""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:9, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, +NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,30,NA,village2,mabatisloping,716,33.47640837,NA,"NA",NA,yes,A semelhança dos outros questionários este também não foi registado o ponto geográfico desta família.,"NA",yes,"c(""rely_less_food"", ""limit_portion"", ""lab_ex_food"", ""seek_government"")","NA",-19.11142642,"list(E04_res_water_field = c(""land_far"", ""land_far""), E03_crops = list(""maize"", ""beans""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""no"", ""no""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",yes,9 +1,yes,ward2,no,yes,1,NA,"list(F11_no_owned = 5, F_curr_liv = ""cows"")","NA",uuid:d1005274-bf52-4e79-8380-3350dd7c2bac,yes,"NA","NA",yes,2,"NA",burntbricks,1,list(),NULL,NA,2,NA,NA,2017-04-03T14:20:04.000Z,yes,NA,2,NULL,district1,earth,list(),2016-11-21,no,2017-04-03T14:04:50.000Z,"list(D04_crops_harvsted = list(""maize"", ""beans""), D01_curr_plot = 1:2, D02_total_plot = c(1.5, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Mar"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""yes"", D21_cost_labour = 500, D17_cost_seed = 125, D12_harvst_amount = 12, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 0.5, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = 400, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 300, D17_cost_seed = NA, D12_harvst_amount = 4, + D16_imprv_seed = ""no"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Compra de cabeças de gado bovino"", F03_year = 1999, F02_source_income = ""Renda proveniente da produção agrícola"")",1,cows,6,yes,NA,"c(""bicycle"", ""cow_plough"", ""solar_torch"")",NA,yes,"c(""Oct"", ""Nov"")",24,yes,2,NULL,NA,20,"list(B06_memb_education = c(""pri_3"", ""pri_4"", ""pri_2"", ""na"", ""na"", ""na""), B05_memb_age = c(60, 46, 7, 5, 4, 4), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", + ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(c(""small_scale_farm"", ""artisan""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,27,NA,village2,grass,700,33.47619213,NA,"NA",NA,no,A semelhança dos outros questionários este também não foi registado no papel a localização geográfica.,"NA",yes,"c(""rely_less_food"", ""lab_ex_food"")","NA",-19.11147317,"list(E04_res_water_field = c(""land_far"", ""land_far""), E03_crops = list(""maize"", ""beans""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""yes_no_land_chied"", ""yes_no_land_chied""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",no,6 +1,no,ward2,yes,yes,20,4,"list(F11_no_owned = c(2, 1, 3), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:6570a7d0-6a0b-452c-aa2e-922500e35749,yes,"NA","NA",yes,4,"NA",burntbricks,1,list(),Oct,Compra de produtos alimentícios,2,yes,no,2017-04-03T14:44:39.000Z,no,no,4,NULL,district1,cement,"list(E12_apply_water = c(NA, ""basin"", ""basin"", ""basin""), E08_crops = list(NULL, ""vegetable"", ""tomatoes"", ""cabbage""), E09_irr_manager = list(NULL, ""parent"", ""parent"", ""parent""), E09_irr_manager_other = c(NA, NA, NA, NA), E14_access_other = c(NA, NA, NA, NA), E08_crops_other = c(NA, NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near"", ""near""), E16_amount_pay = c(NA, NA, NA, NA), E15_duration = c(NA, NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes"", ""yes""), E14_access = c(NA, ""inherited"", ""inherited"", ""inherited"" +), E11_water_fields = c(NA, ""bucket"", ""bucket"", ""bucket""), E10_water_source = c(NA, ""river"", ""river"", ""river""), E06_plot_no = 1:4)",2016-11-21,no,2017-04-03T14:24:58.000Z,"list(D04_crops_harvsted = list(""maize"", ""vegetable"", ""tomatoes"", ""cabbage""), D01_curr_plot = 1:4, D02_total_plot = c(1, 1, 1, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, + D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 250, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""yes"", + D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 4, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.3, + D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 1500, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 20, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 0.3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 300, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 15, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 915, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""cabbage"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA, NA))","list(F01_item = c(""Comprou aves"", ""Comprou enxadas""), F03_year = c(2007, 2000), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",8,no,never,NULL,less_half,no,"c(""Jan"", ""Feb"", ""Mar"", ""Oct"", ""Nov"", ""Dec"")",20,yes,NA,NULL,NA,21,"list(B06_memb_education = c(""pri_4"", ""pri_6"", ""pri_7"", ""pri_5"", ""pri_4"", ""pri_3"", ""na"", ""na""), B05_memb_age = c(30, 40, 18, 15, 13, 8, 5, 2), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""male"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, +NA))",province1,20,yes,village2,mabatisloping,707,33.47623134,no,20,no,no,A semelhança dos outros questionários este também não foi registado no papel as cordenadas geográficas.,"NA",yes,"c(""rely_less_food"", ""restrict_adults"", ""day_night_hungry"", ""lab_ex_food"")","NA",-19.11155014,list(),"NA",no,8 +1,yes,ward2,no,yes,20,NA,"list(F11_no_owned = 2, F_curr_liv = ""goats"")","NA",uuid:a51c3006-8847-46ff-9d4e-d29919b8ecf9,yes,"NA","NA",yes,1,"NA",muddaub,1,list(),NULL,NA,2,NA,NA,2017-04-03T16:40:47.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-21,no,2017-04-03T16:28:52.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 3, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Feb"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = ""Comprou Radio"", F03_year = 2016, F02_source_income = ""Renda proveniente da produção agrícola"")",1,goats,4,no,NA,radio,NA,yes,"c(""Jan"", ""Feb"", ""Mar"", ""Apr"", ""Aug"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")",14,yes,1,NULL,NA,22,"list(B06_memb_education = c(""pri_3"", ""sec_1"", ""none"", ""none""), B05_memb_age = c(27, 23, 4, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, +NA), B_memb_no = 1:4, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA))",province1,9,NA,village2,grass,722,33.48350764,NA,"NA",NA,no,A semelhança dos outros questionários as cordenadas geográficas deste também não foram registado no papel.,"NA",no,"c(""rely_less_food"", ""reduce_meals"", ""go_forest"", ""lab_ex_food"")","NA",-19.11212691,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,4 +4,no,ward2,no,no,20,NA,"list(F11_no_owned = c(3, 2, 5), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:58b37b6d-d6cd-4414-8790-b9c68bca98de,no,"NA","NA",yes,2,"NA",burntbricks,1,list(),NULL,NA,3,NA,NA,2017-04-03T17:04:28.000Z,yes,NA,2,NULL,district1,cement,list(),2016-11-21,no,2017-04-03T16:41:04.000Z,"list(D04_crops_harvsted = list(""maize"", ""amendoim""), D01_curr_plot = 1:2, D02_total_plot = c(10, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""child""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 10, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 2000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 15, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 10400, D12_harvst_amount = 24, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""own_manure""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""July"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 11, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""own_manure""), D14_cost_fert = NA)), D_curr_crop = ""amendoim"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Construiu a sua habitação"", F03_year = 2006, F02_source_income = ""Renda proveniente da produção agrícola"")",3,"c(""oxen"", ""cows"", ""goats"")",10,no,NA,"c(""cow_cart"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""electricity"", ""mobile_phone"")",NA,no,none,12,no,2,NULL,NA,23,"list(B06_memb_education = c(""sec_2"", ""pri_3"", ""sec_5"", ""sec_5"", ""sec_5"", ""university"", ""sec_5"", ""sec_4"", ""pri_6"", ""pri_4""), B05_memb_age = c(62, 48, 27, 25, 23, 21, 19, 17, 12, 10), B02_memb_gender = c(""male"", ""male"", ""male"", ""female"", ""male"", ""female"", ""male"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", +""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Occasional"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming"" +), c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,10,NA,village3,mabatisloping,699,33.4833833,NA,"NA",NA,yes,"Pontos Geográfico +Latitude: 0512789 +Longetude: 7910848 +Altitude: 709m","NA",yes,na,"NA",-19.11219352,"list(E04_res_water_field = c(""land_far"", ""land_far""), E03_crops = list(""maize"", ""peanut""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""yes_no_land_chied"", ""yes_no_land_chied""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",yes,10 +2,no,ward2,yes,no,4,3,"list(F11_no_owned = c(1, 3, 4), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:661457d3-7e61-45e8-a238-7415e7548f82,no,"NA","NA",no,3,"NA",burntbricks,2,list(),"c(""Sept"", ""Oct"")",Compra de produtos alimentícios,2,yes,no,2017-04-03T17:43:01.000Z,yes,no,3,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""tomatoes"", ""peanut""), E09_irr_manager = list(NULL, ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""allocated_cus_aut"", ""allocated_cus_aut""), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity"" +), E10_water_source = c(NA, ""river"", ""river""), E06_plot_no = c(1, 1, 3))",2016-11-21,no,2017-04-03T17:19:49.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""peanut""), D01_curr_plot = 1:3, D02_total_plot = c(2, 2, 0.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 28800, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = 23, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1800, D12_harvst_amount = 23, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), + D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head"", NULL), D10_who_own = c(""head_spouse_free"", ""head_spouse_free""), D06_mnth_harvest = c(""June"", ""June""), D08_land_planted = c(1, 0), D11_harvst_unit = c(""crates"", ""crates""), D19_pesticide_other = c(NA, NA), D25_price = c(120, NA), D19_pesticide = c(""own_choice"", NA), D07_ploughing_typ = c(""ox"", ""ox""), D24_amnt_sold = c(45, NA), D10_who_own_other = c(NA, NA), D_use_pest = c(""yes"", +""no""), D26_who_sell_harv_other = c(NA, NA), D15_cost_manu = c(NA, NA), D07_ploughing_typ_other = c(NA, NA), D18_cost_pestcd = c(850, NA), D22_sell = c(""yes"", ""no""), D20_paid_labour = c(""yes"", ""no""), D21_cost_labour = c(200, NA), D17_cost_seed = c(1400, NA), D12_harvst_amount = c(45, 0), D16_imprv_seed = c(""yes"", ""no""), D23_where_sold = list(""urban_market"", NULL), D11_harvst_unit_other = c(NA, NA), D09_land_ownshp_other = c(NA, NA), D09_land_ownshp = c(""owned"", ""owned""), D13_fertilizer = list(""paid_fertilizer"", + ""none""), D14_cost_fert = c(1600, NA))), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Jan"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, + D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 875, D12_harvst_amount = 25, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""peanut"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Construiu uma casa"", ""Comprou cabeças de gado bovino""), F03_year = 2013:2012, F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente do comércio""))",3,"c(""oxen"", ""cows"", ""goats"")",6,no,never,"c(""radio"", ""table"", ""sofa_set"", ""mobile_phone"")",less_half,no,"c(""Nov"", ""Dec"")",8,no,NA,NULL,NA,24,"list(B06_memb_education = c(""sec_1"", ""pri_7"", ""pri_3"", ""pri_1"", ""none"", ""na""), B05_memb_age = c(26, 23, 9, 6, 4, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_business"", + ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(c(""small_scale_farm"", ""small_business""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,11,yes,village3,mabatisloping,745,33.48343475,no,8,no,yes,"Ponto geográfico +Latitude: 0512789 +Longetude: 790818 +Altitude: 709m","NA",no,lab_ex_food,"NA",-19.11218803,list(),"NA",yes,6 +3,no,ward2,yes,no,6,3,"list(F11_no_owned = c(6, 8), F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:45ed84c4-114e-4df0-9f5d-c800806c2bee,no,"NA","NA",yes,3,"NA",burntbricks,2,list(),"c(""Aug"", ""Sept"")","Compra produtos alimentícios +Compra vestuários +Paga despesas escolares",2,yes,yes,2017-04-04T04:29:47.000Z,no,no,3,"c(""business"", ""non_farm_prod"")",district1,cement,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""tomatoes"", ""cabbage""), E09_irr_manager = list(NULL, c(""du_head"", ""spouse""), c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""purchased"", ""purchased""), E11_water_fields = c(NA, ""motor_pump"", +""canal_gravity""), E10_water_source = c(NA, ""river"", ""river""), E06_plot_no = 1:3)",2016-11-21,no,2017-04-04T04:01:58.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""cabbage""), D01_curr_plot = 1:3, D02_total_plot = c(6, 1, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 6, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 7200, D12_harvst_amount = 21, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Jan"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 60, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 186, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 570, D22_sell = ""yes"", D20_paid_labour = ""yes"", + D21_cost_labour = 200, D17_cost_seed = 2400, D12_harvst_amount = 186, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Sept"", D08_land_planted = 1, + D11_harvst_unit = ""other"", D19_pesticide_other = NA, D25_price = 25, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 350, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 570, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 200, D17_cost_seed = 4800, D12_harvst_amount = 350, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = ""Unidades"", + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""cabbage"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Construiu uma casa"", ""Comprou uma motorizada"", ""Comprou gerador"", ""Comprou televisor""), F03_year = c(2004, 2008, 2014, 2006), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""cows"")",11,no,never,"c(""cow_cart"", ""motorcyle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""sofa_set"", ""mobile_phone"")",more_half,no,"c(""Jan"", ""Feb"", ""Oct"")",10,no,NA,NULL,NA,25,"list(B06_memb_education = c(""pri_6"", ""pri_6"", ""pri_6"", ""pri_5"", ""pri_2"", ""pri_1"", ""na"", ""na"", ""na"", ""na"", ""na""), B05_memb_age = c(35, 29, 16, 12, 8, 6, 2, 2, 1, 1, 5), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female"", ""female"", ""male"", ""male"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", +""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Holidays""), B09_interviewee_main_activities = list(""comm_farming"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:11, B08_interviewee_activities = list(c(""small_scale_farm"", ""small_business""), + c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,11,yes,village3,mabatisloping,698,33.4834841,no,10,no,yes,"Ponto geográfico + +Latitude: 0512805 +Longetude: 7910861 +Altitude: 709m","NA",yes,na,"NA",-19.11223416,list(),"NA",yes,11 +2,yes,ward2,yes,yes,20,2,"list(F11_no_owned = 1:2, F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:1c54ee24-22c4-4ee9-b1ad-42d483c08e2e,yes,"NA","NA",yes,2,"NA",burntbricks,2,list(),"c(""Oct"", ""Nov"")","Compra produtos alimentícios +Compra produtos de higiene",2,yes,no,2017-04-04T04:44:19.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""beans""), E09_irr_manager = list(NULL, ""spouse""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2016-11-21,no,2017-04-04T04:30:19.000Z,"list(D04_crops_harvsted = list(""maize"", ""beans""), D01_curr_plot = 1:2, D02_total_plot = c(5, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 400, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Oct"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, + D12_harvst_amount = 1, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Construiu uma casa"", ""Comprou cabeças de gado bovino""), F03_year = c(2016, 2009), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola,""))",2,"c(""oxen"", ""cows"")",3,no,never,"c(""radio"", ""cow_plough"", ""table"", ""mobile_phone"")",abt_half,yes,none,2,yes,NA,NULL,NA,26,"list(B06_memb_education = c(""pri_2"", ""pri_1"", ""pri_6""), B05_memb_age = c(56, 40, 12), B02_memb_gender = c(""male"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Holidays""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA), B_memb_no = 1:3, B08_interviewee_activities = list(""small_scale_farm"", + c(""housework"", ""small_scale_farm""), ""na""), B03_relationship_du_other = c(NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA))",province1,12,yes,village3,mabatisloping,706,33.48354341,no,2,no,no,"Ponto geográfico + +Latitude: 0512443 +Longetude: 7910993 +Altitude: 707m","NA",yes,na,"NA",-19.11230411,list(),"NA",yes,3 +2,no,ward2,no,no,36,NA,"list(F11_no_owned = c(2, 5, 6), F_curr_liv = c(""oxen"", ""cows"", ""poultry""))","NA",uuid:3197cded-1fdc-4c0c-9b10-cfcc0bf49c4d,no,"NA","NA",yes,2,"NA",burntbricks,3,list(),NULL,NA,3,NA,NA,2017-04-05T05:14:45.000Z,no,NA,2,NULL,district1,earth,list(),2016-11-21,no,2017-04-05T04:59:42.000Z,"list(D04_crops_harvsted = list(""maize"", ""beans""), D01_curr_plot = 1:2, D02_total_plot = c(4, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 450, D12_harvst_amount = 30, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 50, D16_imprv_seed = ""no"", + D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Construiu sua casa e comprou cabeças de gado bovino"", ""Comprou biscleta""), F03_year = c(2013, 2006), F02_source_income = c(""Renda proveniente de pequenos negócios"", ""Renda proveniente de pequenos negócios""))",3,"c(""oxen"", ""cows"", ""poultry"")",7,no,NA,"c(""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""mobile_phone"")",NA,no,none,36,no,2,NULL,NA,27,"list(B06_memb_education = c(""pri_5"", ""none"", ""pri_6"", ""pri_5"", ""sec_2"", ""pri_1"", ""sec_2""), B05_memb_age = c(52, 40, 17, 14, 18, 8, 14), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Occasional"", ""Always"", ""Occasional"" +), B09_interviewee_main_activities = list(""small_business"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,14,NA,village3,grass,679,33.40508367,NA,"NA",NA,yes,"Ponto geográfico + +Latitude: 0512565 +Longetude: 791093 +Altitude: 7162m","NA",no,na,"NA",-19.0430007,"list(E04_res_water_field = c(""land_far"", ""land_far""), E03_crops = list(""maize"", ""beans""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""yes_no_land_chied"", ""yes_no_land_chied""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",no,7 +1,no,ward2,yes,no,2,3,list(),"NA",uuid:1de53318-a8cf-4736-99b1-8239f8822473,no,"NA","NA",yes,3,"NA",muddaub,1,list(),"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")",Compra vestuários e produtos de higiene e alimentares,3,yes,no,2017-04-05T05:36:18.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""tomatoes"", ""vegetable""), E09_irr_manager = list(NULL, ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""allocated_irr_ass"", ""allocated_irr_ass""), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity"" +), E10_water_source = c(NA, ""river"", ""river""), E06_plot_no = 1:3)",2016-11-21,no,2017-04-05T05:14:49.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""vegetable""), D01_curr_plot = 1:3, D02_total_plot = c(1, 0.5, 0.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 15, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 0.3, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 250, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 40, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 150, D22_sell = ""yes"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 40, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 100)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Feb"", D08_land_planted = 0.5, + D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 100, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 1, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 200)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = ""Comprou aves e biscleta"", F03_year = 2006, F02_source_income = ""Renda proveniente de biscatos"")",1,none,2,no,more_once,NULL,more_half,no,"c(""Aug"", ""Sept"", ""Oct"")",2,yes,NA,NULL,NA,28,"list(B06_memb_education = c(""pri_4"", ""none""), B05_memb_age = c(50, 30), B02_memb_gender = c(""male"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried""), B03_relationship_du = c(""head"", ""Spouse""), B07_residence_status = c(""Always"", ""Occasional""), B09_interviewee_main_activities = list(""small_scale_farm"", ""housework""), B09_interviewee_main_activities_other = c(NA, NA), B_memb_no = 1:2, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm"")), B03_relationship_du_other = c(NA, +NA), B08_interviewee_activities_other = c(NA, NA))",province1,7,yes,village3,grass,721,33.40506932,no,2,no,yes,"Este casal e o 2 ano que trabalha no campo, depois de deixar de trabalhar na cidade. Eles tem uma parcela grande que divide para produzir as suas cilturas. + +Ponto geográfico + +Latitude:0512684 +Longetude: 7910706 +Altitude: 718.0","NA",no,"c(""rely_less_food"", ""reduce_meals"", ""borrow_food"", ""go_forest"", ""lab_ex_food"")","NA",-19.04290893,list(),"NA",no,2 +2,yes,ward2,yes,no,10,3,"list(F11_no_owned = 3, F_curr_liv = ""goats"")","NA",uuid:adcd7463-8943-4c67-b25f-f72311409476,no,"NA","NA",yes,3,"NA",burntbricks,1,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra de alimentos +Construção de habitação +Compra de alguns bens",3,yes,no,2017-04-05T06:05:44.000Z,no,yes,3,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""tomatoes"", ""beans""), E09_irr_manager = list(NULL, c(""du_head"", ""spouse""), c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near""), E16_amount_pay = c(NA, 1000, 1000), E15_duration = c(NA, ""longer_year"", ""longer_year""), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""rented"", ""rented""), E11_water_fields = c(NA, +""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, ""river"", ""river""), E06_plot_no = c(1, 2, 2))",2016-11-21,no,2017-04-05T05:37:30.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""beans""), D01_curr_plot = 1:3, D02_total_plot = c(1.5, 0.2, 0.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1500, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 500, D12_harvst_amount = 28, D16_imprv_seed = ""yes"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 50, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 40, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, + D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1000, D12_harvst_amount = 40, D16_imprv_seed = ""yes"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", + D06_mnth_harvest = ""Mar"", D08_land_planted = 0.5, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = 1220, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 18, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 18, D16_imprv_seed = ""no"", D23_where_sold = list(""main_road""), + D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Construiu suas habitações"", ""Comprou uma motorizada""), F03_year = c(2007, 2015), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",1,goats,7,no,frequently,"c(""motorcyle"", ""bicycle"", ""radio"", ""table"", ""mobile_phone"")",more_half,yes,"c(""Jan"", ""Feb"")",10,no,NA,less_work,yes,29,"list(B06_memb_education = c(""pri_1"", ""pri_7"", ""pri_3"", ""pri_3"", ""none"", ""pri_5"", ""pri_1""), B05_memb_age = c(27, 34, 14, 7, 6, 10, 5), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""unmarried""), B03_relationship_du = c(""Spouse"", ""head"", ""other"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Occasional"", ""Always"", ""Always"", ""Always"", ""Always"", +""Always"", ""Always""), B09_interviewee_main_activities = list(""comm_farming"", ""comm_farming"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm"", ""comm_farming""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, ""Sobrinha"", NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,6,yes,village3,mabatisloping,657,33.40507276,yes,4,no,yes,"Quanto tiverem a travessar dificuldades estes recorrem aos pequenos negócios parw suprir as necessidades. + +Ponto geográfico + +Latitude: 0512602 +Longetude: 7910628 +Altitude: 719.8","NA",yes,"c(""rely_less_food"", ""limit_variety"")","NA",-19.04302413,list(),"NA",no,7 +2,no,ward2,no,no,22,NA,list(),"NA",uuid:59341ead-92be-45a9-8545-6edf9f94fdc6,no,"NA","NA",no,1,"NA",muddaub,1,"list(B13_remitter_location_village = ""Maputo"", B15_remitter_location_region_other = NA, B15_remitter_location_region = ""maputo"", B14_remitter_location_district = ""Maputo"", B12_remittance_money_type = ""Militar"")",NULL,NA,2,NA,NA,2017-04-05T06:20:39.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-21,yes,2017-04-05T06:05:58.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 5, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 400, D12_harvst_amount = 8, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = c(""Pagamento de despesas escolares"", ""Comprou bicicleta""), F03_year = c(2015, 2010), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",1,none,7,no,NA,"c(""bicycle"", ""radio"", ""mobile_phone"")",NA,no,"c(""Jan"", ""Feb"")",22,yes,1,NULL,NA,30,"list(B06_memb_education = c(""pri_7"", ""pri_7"", ""sec_1"", ""sec_1"", ""pri_7"", ""pri_5"", ""pri_5""), B05_memb_age = c(50, 31, 22, 18, 17, 11, 10), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Occasional"", ""Occasional"", ""Always"", +""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,5,NA,village3,grass,669,33.40505449,NA,"NA",NA,no,"A produçãobaixou devido a secar na campanha de 2015/2016. Mas parece o intervistado estar a omitir informações. + +Ponto geográfico + +Latitude: 0512592 +Longetude: 7910559 +Altitude: 718.5m","NA",yes,"c(""rely_less_food"", ""limit_variety"", ""limit_portion"", ""restrict_adults"", ""lab_ex_food"")","NA",-19.04300478,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,7 +1,yes,ward2,no,yes,2,NA,list(),"NA",uuid:cb06eb49-dd39-4150-8bbe-a599e074afe8,yes,"NA","NA",no,1,"NA",muddaub,7,list(),NULL,NA,3,NA,NA,2017-04-05T06:38:26.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-21,no,2017-04-05T06:21:20.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 1, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 200, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)",list(),1,none,3,no,NA,NULL,NA,yes,none,15,no,1,NULL,NA,31,"list(B06_memb_education = c(""pri_7"", ""pri_7"", ""none""), B05_memb_age = c(20, 22, 1), B02_memb_gender = c(""female"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA), B_memb_no = 1:3, B08_interviewee_activities = list( + c(""housework"", ""small_scale_farm""), c(""small_scale_farm"", ""comm_farming""), ""na""), B03_relationship_du_other = c(NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA))",province1,4,NA,village3,grass,704,33.40509382,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 0513954 +Longetude: 7907302 +Altitude: 820m","NA",yes,na,"NA",-19.04302176,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,3 +2,yes,ward2,yes,yes,69,8,"list(F11_no_owned = c(5, 5, 17, 5, 19), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""pigs"", ""poultry""))","NA",uuid:25597af3-cd79-449c-a48a-fb9aea6c48bf,no,"NA","NA",yes,8,"NA",muddaub,8,"list(B13_remitter_location_village = c(""Chimoio"", ""Messica""), B15_remitter_location_region_other = c(NA, NA), B15_remitter_location_region = c(""manica"", ""manica""), B14_remitter_location_district = c(""Chimoio"", ""Messica""), B12_remittance_money_type = c(""Professor"", ""Agricultor""))","c(""Sept"", ""Oct"")","Compra produtos alimentícios +Compra vestuários +Compra insumos agrícolas",2,yes,yes,2017-04-05T08:05:32.000Z,no,no,8,farming,district1,earth,"list(E12_apply_water = c(NA, NA, NA, NA, ""furrows"", ""furrows"", ""furrows"", ""furrows""), E08_crops = list(NULL, NULL, NULL, NULL, ""tomatoes"", ""vegetable"", ""onion"", ""cabbage""), E09_irr_manager = list(NULL, NULL, NULL, NULL, ""du_head"", ""du_head"", ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA, NA, NA, NA, NA, NA), E14_access_other = c(NA, NA, NA, NA, NA, NA, NA, NA), E08_crops_other = c(NA, NA, NA, NA, NA, NA, NA, NA), E13_plot_loc = c(NA, NA, NA, NA, ""near"", ""near"", ""near"", ""near""), E16_amount_pay = c(NA, +NA, NA, NA, NA, NA, NA, NA), E15_duration = c(NA, NA, NA, NA, NA, NA, NA, NA), E07_bring = c(""no"", ""no"", ""no"", ""no"", ""yes"", ""yes"", ""yes"", ""yes""), E14_access = c(NA, NA, NA, NA, ""allocated_cus_aut"", ""allocated_cus_aut"", ""allocated_cus_aut"", ""allocated_cus_aut""), E11_water_fields = c(NA, NA, NA, NA, ""canal_gravity"", ""canal_gravity"", ""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, NA, NA, NA, ""river"", ""river"", ""river"", ""river""), E06_plot_no = 1:8)",2016-11-21,yes,2017-04-05T06:38:55.000Z,"list(D04_crops_harvsted = list(""maize"", ""sorghum"", ""sunflower"", ""peanut"", ""tomatoes"", ""onion"", ""cabbage"", ""vegetable""), D01_curr_plot = 1:8, D02_total_plot = c(10, 3, 0.5, 1, 0.5, 0.3, 0.2, 0.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare"", ""hactare"", ""hactare"", ""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1"", ""1"", ""1"", ""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA, NA, NA, NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), + D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 900, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 10, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 60, D16_imprv_seed = ""no"", D23_where_sold = list( + ""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""July"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 15, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""sorghum"", D_repeat_times_count = ""1"", D05_times = 1), + list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 3400, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 6, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""sunflower"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, + D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 0, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), + D_curr_crop = ""peanut"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 0.3, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 70, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, + D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 70, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", + D06_mnth_harvest = ""Sept"", D08_land_planted = 0.3, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 450, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 15, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 1600, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 400, D12_harvst_amount = 15, D16_imprv_seed = ""yes"", D23_where_sold = list( + ""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""onion"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 0.2, D11_harvst_unit = ""other"", D19_pesticide_other = NA, D25_price = 25, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", + D24_amnt_sold = 350, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 350, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = ""Unidades"", D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), + D_curr_crop = ""cabbage"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 12, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, + D18_cost_pestcd = 800, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 12, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA, NA, NA, NA, NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Construiu a sua moradia \nComprou charua"", ""Comprou uma motorizada""), F03_year = c(2001, 2011, 2002), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",5,"c(""oxen"", ""cows"", ""goats"", ""pigs"", ""poultry"")",19,no,more_once,"c(""cow_cart"", ""motorcyle"", ""radio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",more_half,yes,none,53,yes,NA,NULL,no,32,"list(B06_memb_education = c(""pri_4"", ""pri_2"", ""pri_2"", ""sec_3"", ""sec_5"", ""pri_5"", ""pri_4"", ""pri_5"", ""pri_3"", ""pri_6"", ""pri_3"", ""none"", ""na"", ""none"", ""na"", ""pri_4"", ""pri_4"", ""na"", ""sec_1""), B05_memb_age = c(69, 55, 52, 24, 26, 22, 12, 15, 10, 12, 9, 15, 3, 4, 3, 14, 15, 4, 20), B02_memb_gender = c(""male"", ""male"", ""female"", ""male"", ""female"", ""male"", ""male"", ""female"", ""male"", ""female"", ""female"", ""male"", ""male"", ""male"", ""male"", ""female"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""married"", +""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""other"", ""other"", ""other"", ""other"", ""other"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""comm_farming"", c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, +NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:19, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""small_scale_farm"", c(""small_scale_farm"", ""comm_farming""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, +NA, ""Sobrinho"", ""Sobrinho"", ""Sobrinha"", ""Sobrinho"", ""Sobrinho"", NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,8,yes,village3,mabatipitched,703,33.40390565,yes,45,no,yes,"Este é o régulo de 3o escalão do povoado de Ruaca. + +Ponto geográfico +Latitude: 0511851 +Longetude: 7910541 +Altitude: 741m","NA",yes,na,"NA",-19.04411399,list(),"NA",yes,19 +1,yes,ward2,yes,yes,34,2,"list(F11_no_owned = c(2, 10), F_curr_liv = c(""oxen"", ""poultry""))","NA",uuid:0fbd2df1-2640-4550-9fbd-7317feaa4758,yes,"NA","NA",yes,2,"NA",muddaub,2,list(),"c(""Aug"", ""Sept"", ""Oct"")","Compra de produtos alimentícios +Pagamento de despesas escolares +Compra de vestuários +Compra de insumos agrícolas",2,yes,no,2017-04-05T08:25:48.000Z,no,no,2,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""allocated_cus_aut""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2016-11-21,no,2017-04-05T08:08:19.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(4, 2), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 9, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Mar"", D08_land_planted = 1.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 130, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 166, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 1650, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = 1500, D12_harvst_amount = 166, D16_imprv_seed = ""yes"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 4800)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou caroça de bois"", ""Comprou tracção animal"", ""Comprou cabeças de gado bovino""), F03_year = c(2000, 2002, 2004), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""poultry"")",8,no,more_once,"c(""cow_cart"", ""lorry"", ""motorcyle"", ""sterio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",more_half,yes,none,20,no,NA,NULL,NA,33,"list(B06_memb_education = c(""pri_2"", ""pri_2"", ""pri_3"", ""pri_4"", ""pri_3"", ""na"", ""na"", ""na""), B05_memb_age = c(34, 32, 8, 10, 8, 4, 2, 1), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, +NA))",province1,5,yes,village3,grass,695,33.40383602,no,20,no,no,"Ponto geográfico + +Latitude: 0514079 +Longetude: 7907305 +Altitude: 822m","NA",yes,na,"NA",-19.04414887,list(),"NA",no,8 +3,no,ward2,yes,no,18,2,"list(F11_no_owned = c(1, 7, 2), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:14c78c45-a7cc-4b2a-b765-17c82b43feb4,no,"NA","NA",yes,2,"NA",burntbricks,2,list(),"c(""Oct"", ""Nov"")","Pagamento de despesas escolares +Construção de habitação +Compra de insumos agrícolas +Compra de produtos alimentícios +Compra de cabeças de gado bovino",2,yes,no,2017-04-05T16:21:59.000Z,yes,no,2,NULL,district1,cement,"list(E12_apply_water = c(""furrows"", NA), E08_crops = list(""tomatoes"", NULL), E09_irr_manager = list(""du_head"", NULL), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(""far"", NA), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""yes"", ""no""), E14_access = c(""inherited"", NA), E11_water_fields = c(""canal_gravity"", NA), E10_water_source = c(""river"", NA), E06_plot_no = 1:2)",2016-11-17,no,2017-04-05T16:00:47.000Z,"list(D04_crops_harvsted = list(""tomatoes"", ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(1, 1.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Dec"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 700, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", + D24_amnt_sold = 90, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 90, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Pagou as despesas escolares dos filhos"", ""Construiu a sua moradia""), F03_year = c(2005, 2015), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",8,no,more_once,"c(""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",more_half,no,"c(""Jan"", ""Dec"")",18,no,NA,NULL,no,34,"list(B06_memb_education = c(""pri_5"", ""pri_5"", ""sec_1"", ""sec_1"", ""pri_4"", ""pri_2"", ""none"", ""none""), B05_memb_age = c(42, 39, 18, 14, 11, 8, 5, 1), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""female"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""casu_labourer"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""casu_labourer"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, +NA, NA, NA, NA, NA))",province1,11,yes,village1,mabatisloping,706,33.48341559,yes,2,no,yes,"Ponto geográfico + +Latitude: 0512577 +Longetude: 7906193 +Altitude: 7092m","NA",yes,"c(""rely_less_food"", ""limit_variety"", ""limit_portion"", ""restrict_adults"", ""lab_ex_food"")","NA",-19.11219065,list(),"NA",no,8 +1,no,ward2,yes,no,45,2,"list(F11_no_owned = c(6, 8), F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:ff7496e7-984a-47d3-a8a1-13618b5683ce,no,"NA","NA",yes,2,"NA",muddaub,3,list(),"c(""Sept"", ""Oct"", ""Nov"")",Despesas da casa e compra de bens,3,yes,no,2017-04-05T16:50:25.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(""furrows"", NA), E08_crops = list(""tomatoes"", NULL), E09_irr_manager = list(c(""du_head"", ""spouse""), NULL), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(""near"", NA), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""yes"", ""no""), E14_access = c(""allocated_irr_ass"", NA), E11_water_fields = c(""canal_gravity"", NA), E10_water_source = c(""river"", NA), E06_plot_no = 1:2)",2016-11-17,no,2017-04-05T16:22:13.000Z,"list(D04_crops_harvsted = list(""tomatoes"", ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(1, 4), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Dec"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = ""required_buyer"", D07_ploughing_typ = ""ox"", + D24_amnt_sold = 80, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 700, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 80, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 15, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Pagou despesas de lobolo da sua esposa"", ""Comprou cabeças de gado bovino""), F03_year = c(1997, 2013), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""cows"")",5,no,more_once,"c(""bicycle"", ""cow_plough"")",more_half,no,"c(""Jan"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")",45,yes,NA,NULL,no,35,"list(B06_memb_education = c(""none"", ""none"", ""pri_4"", ""pri_2"", ""na""), B05_memb_age = c(83, 77, 12, 8, 4), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na""), + B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,11,yes,village1,grass,733,33.48342515,yes,20,no,no,"Ponto geográfico + +Latitude: 0513275 +Longetude: 7905607 +Altitude: 729.1m","NA",yes,"c(""rely_less_food"", ""limit_variety"", ""limit_portion"", ""reduce_meals"", ""restrict_adults"", ""go_forest"")","NA",-19.11211362,list(),"NA",no,5 +1,no,ward2,yes,no,23,3,"list(F11_no_owned = c(4, 4, 1), F_curr_liv = c(""oxen"", ""cows"", ""pigs""))","NA",uuid:c90eade0-1148-4a12-8c0e-6387a36f45b1,no,"NA","NA",no,3,"NA",sunbricks,1,list(),NULL,"Compra de insumos agrícolas +Compra de produtos alimentícios +Pagamento de despesas escolares +Compra de charuas",3,no,no,2017-04-05T17:10:53.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""tomatoes"", ""vegetable""), E09_irr_manager = list(NULL, ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""purchased"", ""purchased""), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, +""river"", ""river""), E06_plot_no = 1:3)",2016-11-17,no,2017-04-05T16:50:48.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""vegetable""), D01_curr_plot = 1:3, D02_total_plot = c(1, 2, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 24, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""other_rel"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Sept"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 1200, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 30, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 600, D22_sell = ""yes"", + D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 30, D16_imprv_seed = ""no"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""other_rel"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Sept"", + D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 600, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Pagou despesas escolares dos filhos"", ""Comprou cabeças de gado bovino""), F03_year = c(2001, 2004), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""pigs"")",6,no,once,"c(""cow_cart"", ""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",abt_half,no,none,23,yes,NA,NULL,no,36,"list(B06_memb_education = c(""none"", ""none"", ""pri_4"", ""na"", ""sec_1"", ""sec_1""), B05_memb_age = c(60, 52, 21, 1, 18, 21), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""unmarried""), B03_relationship_du = c(""head"", ""Spouse"", ""other"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", + ""small_scale_farm"", ""housework"", ""na"", ""small_business"", ""small_scale_farm""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""small_business"", ""small_scale_farm""), B03_relationship_du_other = c(NA, NA, ""Sobrinha"", NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,10,yes,village1,mabatisloping,710,33.4833843,yes,23,no,no,"Ponto geográfico + +Latitude: 0513042 +Longetude: 7905477 +Altitude: 713.9m","NA",yes,na,"NA",-19.11218058,list(),"NA",yes,6 +1,no,ward2,no,yes,8,NA,"list(F11_no_owned = c(3, 3), F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:408c6c93-d723-45ef-8dee-1b1bd3fe20cd,no,"NA","NA",yes,1,"NA",burntbricks,3,list(),NULL,NA,3,NA,NA,2017-04-05T17:26:51.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-17,no,2017-04-05T17:17:48.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 1, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 25, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = ""Construiu a sua moradia"", F03_year = 2014, F02_source_income = ""Renda proveniente de trabalhos sazonais"")",2,"c(""oxen"", ""cows"")",3,no,NA,"c(""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""mobile_phone"")",NA,yes,"c(""Jan"", ""Nov"", ""Dec"")",8,no,1,NULL,NA,37,"list(B06_memb_education = c(""pri_4"", ""pri_5"", ""sec_3""), B05_memb_age = c(30, 26, 21), B02_memb_gender = c(""male"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""other""), B07_residence_status = c(""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm""), B09_interviewee_main_activities_other = c(NA, NA, NA), B_memb_no = 1:3, B08_interviewee_activities = list( + ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm""), B03_relationship_du_other = c(NA, NA, ""Tia""), B08_interviewee_activities_other = c(NA, NA, NA))",province1,12,NA,village1,mabatisloping,711,33.48339525,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 0513042 +Longetude: 7905477 +Altitude: 714.1m","NA",no,"c(""rely_less_food"", ""limit_variety"", ""lab_ex_food"")","NA",-19.11217951,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,3 +1,no,ward2,yes,no,19,2,"list(F11_no_owned = c(4, 2, 5), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:81309594-ff58-4dc1-83a7-72af5952ee08,no,"NA","NA",yes,2,"NA",muddaub,3,"list(B13_remitter_location_village = ""Manica"", B15_remitter_location_region_other = NA, B15_remitter_location_region = ""manica"", B14_remitter_location_district = ""Manica"", B12_remittance_money_type = ""Pedreiro"")","c(""Sept"", ""Oct"")","Compra produtos alimentícios +Compra produtos de higiene",3,yes,no,2017-04-05T17:50:57.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""middle""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2016-11-17,yes,2017-04-05T17:28:12.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(0.5, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""child""), D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 190, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 141, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 900, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 590, D12_harvst_amount = 141, + D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Comprou cabeças de gado bovino \nComprou pulverizador \nComprou 2 Biscletas \nComprou radio\nComprou cabeças de gado caprino"", F03_year = 2015, F02_source_income = ""Renda proveniente da produção agrícola"")",3,"c(""oxen"", ""cows"", ""goats"")",10,yes,never,"c(""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""table"", ""mobile_phone"")",more_half,no,Nov,19,yes,NA,NULL,no,38,"list(B06_memb_education = c(""pri_6"", ""pri_4"", ""pri_5"", ""sec_1"", ""pri_3"", ""sec_1"", ""none"", ""none"", ""na"", ""na""), B05_memb_age = c(52, 50, 22, 30, 32, 19, 4, 4, 3, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""female"", ""female"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""unmarried"", ""married"", ""married"", ""widow/er"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""other"", ""Child"", ""Child"", ""Child"", ""other"", +""other"", ""other"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list(c(""small_scale_farm"", ""artisan""), c(""housework"", +""small_scale_farm""), c(""housework"", ""small_scale_farm""), c(""small_scale_farm"", ""artisan""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, ""Nora"", NA, NA, NA, ""Sobrinha"", ""Sobrinho"", ""Sobrinha"", NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,9,yes,village2,grass,696,33.48337467,yes,9,no,no,"Ponto geográfico + +Latitude: 0511572 +Longetude: 7908720 +Altitude: 694.5m","NA",yes,"c(""limit_variety"", ""lab_ex_food"")","NA",-19.11222939,list(),"NA",no,10 +1,yes,ward2,no,yes,22,NA,"list(F11_no_owned = 2, F_curr_liv = ""oxen"")","NA",uuid:c0fb6310-55af-4831-ae3d-2729556c3285,yes,"NA","NA",yes,1,"NA",muddaub,1,list(),NULL,NA,3,NA,NA,2017-04-06T08:44:47.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-17,no,2017-04-06T08:31:17.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 7, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 36, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = ""Construiu a sua moradia"", F03_year = 2000, F02_source_income = ""Renda proveniente da actividade de práticas da medicina tradicional"")",1,oxen,6,no,NA,NULL,NA,yes,Nov,22,no,1,NULL,NA,39,"list(B06_memb_education = c(""none"", ""none"", ""pri_6"", ""pri_2"", ""pri_1"", ""none"", ""na""), B05_memb_age = c(64, 18, 16, 12, 8, 5, 0), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""widow/er"", ""single"", ""single"", ""single"", ""single"", ""single"", ""na""), B03_relationship_du = c(""head"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""other""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", +""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = c(1, 2, 3, 4, 5, 6, 0), B08_interviewee_activities = list(c(""housework"", ""small_scale_farm"", ""other""), ""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""other""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, ""0""), B08_interviewee_activities_other = c(""Medica tradicional"", +NA, NA, NA, NA, NA, ""0""))",province1,20,NA,village2,mabatisloping,0,33.4046671,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 0511450 +Longetude: 7109098 +Altitude: 693.8m","NA",yes,lab_ex_food,"NA",-19.0433618,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,6 +1,yes,ward2,yes,yes,23,2,"list(F11_no_owned = 5, F_curr_liv = ""oxen"")","NA",uuid:c0b34854-eede-4e81-b183-ef58a45bfc34,yes,"NA","NA",yes,2,"NA",burntbricks,1,"list(B13_remitter_location_village = ""Messica"", B15_remitter_location_region_other = NA, B15_remitter_location_region = ""manica"", B14_remitter_location_district = ""Manica"", B12_remittance_money_type = ""Comerciante de peixe"")","c(""Sept"", ""Oct"")","Pagamento de despesas escolares +Pagamento de despesas da casa",3,yes,no,2017-04-06T09:03:47.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""flood""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"", ""child"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""purchased""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""rain_flood""), E06_plot_no = 1:2)",2016-11-17,yes,2017-04-06T08:44:51.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(4, 2), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Feb"", D08_land_planted = 2, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 700, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 27, + D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 3200)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Comprou charua\nConstruiu a sua moradia"", F03_year = 2004, F02_source_income = ""Renda proveniente da produção agrícola"")",1,oxen,9,no,never,"c(""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""table"", ""mobile_phone"")",more_half,no,"c(""Sept"", ""Oct"", ""Nov"")",23,no,NA,NULL,no,40,"list(B06_memb_education = c(""pri_4"", ""pri_5"", ""pri_3"", ""pri_6"", ""pri_5"", ""pri_1"", ""pri_2"", ""pri_1"", ""none""), B05_memb_age = c(48, 28, 28, 22, 14, 8, 7, 6, 3), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""female"", ""male"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""other"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", +""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""comm_farming"", ""comm_farming"", c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:9, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", + ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, ""Irmão"", NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,22.112,yes,village2,grass,0,33.4046671,yes,23,no,no,"Ponto geográfico + +Latitude: 0511535 +Longetude: 7909022 +Altitude: 695.3m","NA",yes,lab_ex_food,"NA",-19.0433618,list(),"NA",no,9 +1,yes,ward2,no,yes,22,NA,"list(F11_no_owned = c(2, 6), F_curr_liv = c(""oxen"", ""poultry""))","NA",uuid:b3ba34d8-eea1-453d-bc73-c141bcbbc5e5,yes,"NA","NA",no,1,"NA",muddaub,1,list(),NULL,NA,3,NA,NA,2017-04-06T09:14:05.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-17,no,2017-04-06T09:03:50.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 5, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 500, D12_harvst_amount = 12, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 3200)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)",list(),2,"c(""oxen"", ""poultry"")",7,no,NA,"c(""motorcyle"", ""bicycle"", ""radio"", ""cow_plough"", ""table"")",NA,yes,"c(""Oct"", ""Nov"")",22,no,1,NULL,NA,41,"list(B06_memb_education = c(""pri_5"", ""pri_3"", ""pri_4"", ""pri_1"", ""pri_1"", ""na"", ""na""), B05_memb_age = c(37, 27, 13, 11, 7, 4, 2), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list( + ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(c(""small_scale_farm"", ""artisan""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,13,NA,village2,grass,679,33.40485363,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 0511503 +Longetude: 7909131 +Altitude: 697.7m","NA",yes,"c(""limit_portion"", ""reduce_meals"")","NA",-19.04339398,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,7 +1,no,ward2,yes,no,8,2,"list(F11_no_owned = c(4, 5, 25), F_curr_liv = c(""cows"", ""goats"", ""poultry""))","NA",uuid:e3a1dd8a-1bda-428c-a014-2b527f11ae64,no,"NA","NA",yes,2,"NA",sunbricks,1,list(),"c(""Aug"", ""Sept"")",Compra de produtos alimentícios,3,yes,no,2017-04-06T09:30:54.000Z,yes,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""other""), E09_irr_manager = list(NULL, ""spouse""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, ""Murango""), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""purchased""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = c(1, 1))",2016-11-17,no,2017-04-06T09:14:22.000Z,"list(D04_crops_harvsted = list(""maize"", ""other""), D01_curr_plot = 1:2, D02_total_plot = c(0.5, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, ""Murango""), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Mar"", D08_land_planted = 0.5, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 0, D16_imprv_seed = ""no"", + D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""other"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))",list(),3,"c(""cows"", ""goats"", ""poultry"")",8,no,never,mobile_phone,less_half,no,"c(""Jan"", ""Nov"", ""Dec"")",8,no,NA,NULL,NA,42,"list(B06_memb_education = c(""pri_2"", ""pri_4"", ""pri_4"", ""pri_4"", ""pri_3"", ""pri_1"", ""pri_1"", ""na""), B05_memb_age = c(28, 60, 15, 13, 9, 5, 6, 1), B02_memb_gender = c(""female"", ""male"", ""male"", ""male"", ""male"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Occasional"", +""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm"", ""other""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, +""Antigo Combatente"", NA, NA, NA, NA, NA, NA))",province1,10,yes,village2,grass,699,33.40484617,no,5,no,no,"Ponto geográfico + +Latitude: 0511480 +Longetude: 7908743 +Altitude: 688.8m","NA",yes,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"")","NA",-19.04346041,list(),"NA",no,8 +1,no,ward2,yes,no,29,4,"list(F11_no_owned = 2:3, F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:b4dff49f-ef27-40e5-a9d1-acf287b47358,no,"NA","NA",no,4,"NA",muddaub,2,list(),NULL,Comprou produtos de higiene e alimentares,2,no,no,2017-04-06T09:53:53.000Z,no,no,4,NULL,district1,earth,"list(E12_apply_water = c(NA, NA, ""furrows"", ""furrows""), E08_crops = list(NULL, NULL, ""tomatoes"", ""vegetable""), E09_irr_manager = list(NULL, NULL, c(""du_head"", ""other_non_rel""), c(""du_head"", ""other_non_rel"")), E09_irr_manager_other = c(NA, NA, NA, NA), E14_access_other = c(NA, NA, NA, NA), E08_crops_other = c(NA, NA, NA, NA), E13_plot_loc = c(NA, NA, ""near"", ""near""), E16_amount_pay = c(NA, NA, NA, NA), E15_duration = c(NA, NA, NA, NA), E07_bring = c(""no"", ""no"", ""yes"", ""yes""), E14_access = c(NA, NA, +""inherited"", ""inherited""), E11_water_fields = c(NA, NA, ""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, NA, ""river"", ""river""), E06_plot_no = 1:4)",2016-11-17,no,2017-04-06T09:31:56.000Z,"list(D04_crops_harvsted = list(""maize"", ""amendoim"", ""vegetable"", c(""tomatoes"", ""peanut"")), D01_curr_plot = 1:4, D02_total_plot = c(5, 1, 1, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1"", ""2""), D04_crops_harvsted_other = c(NA, NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 700, D12_harvst_amount = 10, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""other_non_rel"")), D10_who_own = ""du"", D06_mnth_harvest = ""Mar"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1400, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 7, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", + D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 7, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list()), D_curr_crop = c(""amendoim"", NA), D_repeat_times_count = c(""1"", ""0""), D05_times = 1:0), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""other_non_rel"")), D10_who_own = ""du"", D06_mnth_harvest = ""Oct"", + D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 200, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 1800, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 200, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""own_manure""), D14_cost_fert = NA)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""other_non_rel"")), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 900, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 150, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 700, D17_cost_seed = NA, D12_harvst_amount = 150, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""own_manure""), D14_cost_fert = NA), list(D26_who_sell_harv = list(c(""du_head"", ""other_non_rel"")), + D10_who_own = ""du"", D06_mnth_harvest = ""Mar"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1400, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 7, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 7, D16_imprv_seed = ""no"", D23_where_sold = list( + ""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""tomatoes"", ""peanut""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1))), D03_unit_land_other = c(NA, NA, NA, NA))","list(F01_item = ""Comprou telemóvel \nComprou tracção animal (charua)\nComprou terra para habitação \nComprou insumos agrícolas \nPagou despesas escolares dos filhos"", F03_year = 2015, F02_source_income = ""Renda proveniente da produção agrícola"")",2,"c(""oxen"", ""cows"")",7,no,never,"c(""cow_plough"", ""mobile_phone"")",abt_half,no,"c(""Jan"", ""Feb"", ""Oct"", ""Nov"", ""Dec"")",3,no,NA,NULL,NA,43,"list(B06_memb_education = c(""pri_5"", ""pri_4"", ""pri_5"", ""pri_3"", ""pri_1"", ""na"", ""na""), B05_memb_age = c(34, 29, 11, 9, 7, 5, 1), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list( + ""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,30,yes,village1,grass,605,33.40472726,no,3,no,no,"Ponto geográfico + +Latitude: 0512904 +Longetude: 7905880 +Altitude: 707m","NA",no,lab_ex_food,"NA",-19.04303063,list(),"NA",yes,7 +1,no,ward2,no,no,6,NA,"list(F11_no_owned = c(1, 1, 10), F_curr_liv = c(""oxen"", ""cows"", ""poultry""))","NA",uuid:f9fadf44-d040-4fca-86c1-2835f79c4952,no,"NA","NA",yes,1,"NA",muddaub,2,list(),NULL,NA,2,NA,NA,2017-04-06T14:53:01.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-17,no,2017-04-06T14:44:32.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 1.5, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 75, D12_harvst_amount = 6, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = c(""Construiu uma casa"", ""Comprou charua""), F03_year = 2013:2014, F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""poultry"")",2,no,NA,"c(""radio"", ""solar_torch"")",NA,no,"c(""Jan"", ""Dec"")",3,no,1,NULL,NA,44,"list(B06_memb_education = c(""none"", ""pri_7""), B05_memb_age = c(70, 53), B02_memb_gender = c(""male"", ""female""), B04_memb_marital_status = c(""married"", ""married""), B03_relationship_du = c(""head"", ""Spouse""), B07_residence_status = c(""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm""), B09_interviewee_main_activities_other = c(NA, NA), B_memb_no = 1:2, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm"")), B03_relationship_du_other = c(NA, +NA), B08_interviewee_activities_other = c(NA, NA))",province1,11,NA,village1,grass,716,33.40458039,NA,"NA",NA,no,"Ponto geográfico +Latitude: 0512951 +Longetude: 7905685 +Altitude: 694m","NA",no,borrow_food,"NA",-19.04315107,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",yes,2 +1,no,ward2,yes,no,7,3,"list(F11_no_owned = c(1, 2, 2, 8), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""poultry""))","NA",uuid:e3554d22-35b1-4fb9-b386-dd5866ad5792,no,"NA","NA",no,3,"NA",muddaub,2,list(),"c(""Sept"", ""Oct"")",1,3,yes,yes,2017-04-06T15:11:57.000Z,no,no,3,"c(""farming"", ""non_farm_prod"")",district1,earth,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""tomatoes"", ""beans""), E09_irr_manager = list(NULL, c(""du_head"", ""spouse""), c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""allocated_cus_aut"", ""allocated_cus_aut""), E11_water_fields = c(NA, +""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, ""river"", ""river""), E06_plot_no = 1:3)",2016-11-17,no,2017-04-06T14:53:04.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""beans""), D01_curr_plot = 1:3, D02_total_plot = c(1.5, 1, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 300, D12_harvst_amount = 9, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1700)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 200, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 30, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 950, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = 1200, D12_harvst_amount = 30, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1700)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 1, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, + D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 170, D12_harvst_amount = 2, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), + D14_cost_fert = 1700)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou bois, motorizada e pulverizador"", ""Construiu uma casa""), F03_year = c(2010, 2014), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",4,"c(""oxen"", ""cows"", ""goats"", ""poultry"")",9,no,never,"c(""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",more_half,no,none,25,no,NA,NULL,NA,45,"list(B06_memb_education = c(""sec_1"", ""pri_5"", ""sec_4"", ""sec_1"", ""pri_5"", ""pri_1"", ""na"", ""pri_6"", ""na""), B05_memb_age = c(45, 30, 17, 15, 12, 6, 4, 18, 1), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""other"", ""Child""), B07_residence_status = c(""Always"", +""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:9, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, +NA, NA, NA, NA, NA, NA, ""Sobrinha"", NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,28,yes,village1,grass,703,33.40466493,no,20,no,no,"Ponto geográfico + +Latitude: 0513446 +Longetude: 7905426 +Altitude: 768m","NA",yes,na,"NA",-19.04312371,list(),"NA",yes,9 +2,yes,ward2,yes,yes,42,5,"list(F11_no_owned = c(1, 6), F_curr_liv = c(""oxen"", ""poultry""))","NA",uuid:35f297e0-aa5d-4149-9b7b-4965004cfc37,yes,"NA","NA",no,5,"NA",burntbricks,3,list(),"c(""Aug"", ""Sept"", ""Oct"")","Compra de produtos alimentícios +Compra de insumos agrícolas +Compra de produtos de higiene",2,yes,no,2017-04-06T15:45:32.000Z,no,no,5,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows"", ""furrows"", ""furrows"", ""furrows""), E08_crops = list(NULL, ""tomatoes"", ""vegetable"", ""onion"", ""beans""), E09_irr_manager = list(NULL, ""du_head"", ""du_head"", ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA, NA, NA), E14_access_other = c(NA, NA, NA, NA, NA), E08_crops_other = c(NA, NA, NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near"", ""near"", ""near""), E16_amount_pay = c(NA, NA, NA, NA, NA), E15_duration = c(NA, NA, NA, NA, NA), E07_bring = c(""no"", ""yes"", +""yes"", ""yes"", ""yes""), E14_access = c(NA, ""inherited"", ""inherited"", ""inherited"", ""inherited""), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity"", ""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, ""river"", ""river"", ""river"", ""river""), E06_plot_no = 1:5)",2016-11-17,no,2017-04-06T15:19:41.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""vegetable"", ""onion"", ""beans""), D01_curr_plot = 1:5, D02_total_plot = c(2, 2, 1, 1, 0.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", + D19_pesticide_other = NA, D25_price = 4000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 10, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 15, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", + D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 3600)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Jan"", D08_land_planted = 2, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 500, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 150, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 810, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 150, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 3600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list( + D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 70, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 810, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 100, + D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1800)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, + D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 7, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 7, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), + D14_cost_fert = 1800)), D_curr_crop = ""onion"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Mar"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, + D18_cost_pestcd = 810, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1800)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA, NA, NA))","list(F01_item = c(""Comprou uma motorizada"", ""Comprou cabeças de gado bovino""), F03_year = 2005:2006, F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""poultry"")",10,no,once,"c(""motorcyle"", ""computer"", ""television"", ""sterio"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",more_half,yes,"c(""Sept"", ""Oct"", ""Nov"")",21,no,NA,NULL,NA,46,"list(B06_memb_education = c(""pri_7"", ""pri_5"", ""pri_6"", ""sec_4"", ""sec_1"", ""pri_7"", ""pri_5"", ""pri_2"", ""na"", ""na""), B05_memb_age = c(42, 36, 30, 18, 16, 14, 12, 8, 5, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""male"", ""female"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", +""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming"", ""artisan""), c(""small_scale_farm"", ""comm_farming"", ""comm_business""), c(""small_scale_farm"", ""comm_farming"", ""comm_business""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list( + c(""housework"", ""small_scale_farm"", ""comm_farming"", ""artisan""), c(""housework"", ""small_scale_farm"", ""small_business""), c(""housework"", ""small_scale_farm"", ""small_business""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,5,yes,village1,mabatisloping,703,33.40458421,no,21,no,no,"Ponto geográfico + +Latitude: 0513595 +Longetude: 7905568 +Altitude: 773m","NA",yes,lab_ex_food,"NA",-19.04307032,list(),"NA",yes,10 +1,yes,ward2,yes,yes,2,2,list(),"NA",uuid:2d0b1936-4f82-4ec3-a3b5-7c3c8cd6cc2b,yes,"NA","NA",no,2,"NA",muddaub,1,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra de produtos da primeira necessidade +Compra de terra para actividades agrícolas",3,yes,no,2017-04-07T14:19:45.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, ""spouse""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""purchased""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2016-11-17,no,2017-04-07T14:05:25.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(2.5, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 2.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 600, D12_harvst_amount = 13, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 80, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 80, D22_sell = ""yes"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = 1300, D12_harvst_amount = 80, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 6400)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Construiu um estabelecimento comercial"", F03_year = 2015, F02_source_income = ""Renda proveniente da produção agrícola"")",1,none,2,no,once,"c(""solar_torch"", ""mobile_phone"")",more_half,yes,none,2,no,NA,NULL,no,47,"list(B06_memb_education = c(""pri_7"", ""sec_3""), B05_memb_age = c(21, 30), B02_memb_gender = c(""female"", ""male""), B04_memb_marital_status = c(""married"", ""married""), B03_relationship_du = c(""Spouse"", ""head""), B07_residence_status = c(""Occasional"", ""Occasional""), B09_interviewee_main_activities = list(""small_scale_farm"", c(""small_scale_farm"", ""comm_business"")), B09_interviewee_main_activities_other = c(NA, NA), B_memb_no = 1:2, B08_interviewee_activities = list(""housework"", c(""small_scale_farm"", ""comm_business"" +)), B03_relationship_du_other = c(NA, NA), B08_interviewee_activities_other = c(NA, NA))",province1,5,yes,village1,grass,689,33.48339791,yes,2,no,yes,"Ponto geográfico + +Latitude: 0513220 +Longetude: 7907642 +Altitude: 757m","NA",yes,na,"NA",-19.11226093,list(),"NA",no,2 +1,yes,ward2,no,no,58,NA,"list(F11_no_owned = c(2, 3, 6), F_curr_liv = c(""oxen"", ""cows"", ""poultry""))","NA",uuid:e180899c-7614-49eb-a97c-40ed013a38a2,no,"NA","NA",yes,1,"NA",muddaub,1,list(),NULL,NA,3,NA,NA,2017-04-07T14:40:23.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-16,no,2017-04-07T14:19:49.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""sorghum"")), D01_curr_plot = 1, D02_total_plot = 3.5, D03_unit_land = ""hactare"", D_crops_count = ""2"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, + D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), + D_curr_crop = c(""maize"", ""sorghum""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1))), D03_unit_land_other = NA)","list(F01_item = ""Comprou cabeças de gado bovino \nComprou tracção animal"", F03_year = 2003, F02_source_income = ""Renda proveniente da produção agrícola"")",3,"c(""oxen"", ""cows"", ""poultry"")",7,no,NA,radio,NA,yes,"c(""June"", ""July"", ""Aug"", ""Sept"", ""Oct"", ""Nov"")",48,no,1,NULL,NA,48,"list(B06_memb_education = c(""pri_7"", ""none"", ""sec_5"", ""pri_7"", ""none"", ""na"", ""na""), B05_memb_age = c(58, 54, 28, 28, 6, 1, 1), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""unmarried"", ""unmarried"", ""unmarried"", ""single"", ""unmarried""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""other"", ""Grandchild"", ""Grandchild"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Occasional"", ""Always"", +""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(c(""small_scale_farm"", ""small_business""), c(""housework"", ""small_scale_farm""), ""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, ""Nora"", NA, NA, NA), B08_interviewee_activities_other = c(NA, +NA, NA, NA, NA, NA, NA))",province1,12,NA,village1,grass,689,33.48353345,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 0512674 +Longetude: 7906683 +Altitude: 722.4m","NA",yes,limit_variety,"NA",-19.11222978,"list(E04_res_water_field = ""land_far"", E03_crops = list(c(""maize"", ""sorghum"")), E04_res_water_field_other = NA, E05_tried_access = ""other"", E05_tried_access_other = ""Agua ja não chega na minha machamba"", E02_plot_no = 1)","NA",no,7 +2,yes,ward2,no,yes,26,NA,"list(F11_no_owned = c(2, 6), F_curr_liv = c(""goats"", ""poultry""))","NA",uuid:2303ebc1-2b3c-475a-8916-b322ebf18440,yes,"NA","NA",yes,1,"NA",burntbricks,2,list(),NULL,NA,3,NA,NA,2017-04-07T14:55:51.000Z,yes,NA,1,NULL,district1,earth,list(),2016-11-16,no,2017-04-07T14:43:09.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""sorghum"")), D01_curr_plot = 1, D02_total_plot = 3, D03_unit_land = ""hactare"", D_crops_count = ""2"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, + D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), + D_curr_crop = c(""maize"", ""sorghum""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1))), D03_unit_land_other = NA)",list(),2,"c(""goats"", ""poultry"")",6,no,NA,"c(""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",NA,yes,"c(""Jan"", ""Nov"", ""Dec"")",12,yes,1,NULL,NA,49,"list(B06_memb_education = c(""pri_6"", ""pri_5"", ""pri_1"", ""na"", ""na"", ""na""), B05_memb_age = c(26, 30, 10, 8, 4, 1), B02_memb_gender = c(""female"", ""male"", ""male"", ""female"", ""male"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", +""small_business""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(c(""small_scale_farm"", ""small_business""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,12,NA,49,mabatisloping,694,33.48334844,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 18'444.7559""S +Longetude: 33°6'29.60255""E +Altitude: 689m","NA",no,"c(""reduce_meals"", ""go_forest"", ""lab_ex_food"")","NA",-19.11228265,"list(E04_res_water_field = ""land_far"", E03_crops = list(c(""maize"", ""sorghum"")), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,6 +1,no,ward2,yes,no,7,1,"list(F11_no_owned = 2, F_curr_liv = ""poultry"")","NA",uuid:4267c33c-53a7-46d9-8bd6-b96f58a4f92c,no,"NA","NA",yes,1,"NA",muddaub,1,list(),"c(""Sept"", ""Oct"")","Compra de produtos alimentícios +Compra de insumos agrícolas +Compra de vestuários",2,yes,no,2017-04-07T15:26:23.000Z,no,no,1,NULL,district1,earth,"list(E12_apply_water = ""furrows"", E08_crops = list(c(""maize"", ""tomatoes"", ""piri_piri"")), E09_irr_manager = list(""parent""), E09_irr_manager_other = NA, E14_access_other = NA, E08_crops_other = NA, E13_plot_loc = ""near"", E16_amount_pay = NA, E15_duration = NA, E07_bring = ""yes"", E14_access = ""inherited"", E11_water_fields = ""canal_gravity"", E10_water_source = ""river"", E06_plot_no = 1)",2016-11-16,no,2017-04-07T14:56:01.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""tomatoes"", ""piri_piri"")), D01_curr_plot = 1, D02_total_plot = 0.5, D03_unit_land = ""hactare"", D_crops_count = ""3"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 0.2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 0.2, + D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 100, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 25, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 28, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 400), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Feb"", D08_land_planted = 1, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 10, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 4400, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", + D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 4400, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""tomatoes"", ""piri_piri""), D_repeat_times_count = c(""1"", ""1"", ""1""), D05_times = c(1, 1, 1))), D03_unit_land_other = NA)","list(F01_item = ""Comprou produtos alimentícios"", F03_year = 2015, F02_source_income = ""Renda proveniente da produção agrícola"")",1,poultry,6,no,never,solar_torch,abt_half,no,"c(""June"", ""July"", ""Aug"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")",6,no,NA,NULL,no,50,"list(B06_memb_education = c(""adl_literacy"", ""sec_2"", ""pri_3"", ""pri_1"", ""na"", ""na""), B05_memb_age = c(23, 29, 9, 7, 4, 2), B02_memb_gender = c(""female"", ""male"", ""male"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""housework"", +""small_scale_farm"", ""small_business""), c(""small_scale_farm"", ""small_business""), ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm"", ""small_business""), c(""small_scale_farm"", ""small_business""), ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,12,no,village1,grass,718,33.48344521,yes,1,no,no,"Ponto geográfico + +Latitude: 0512755 +Longetude: 790499 +Altitude: 745.0m","NA",yes,"c(""borrow_food"", ""go_forest"", ""lab_ex_food"")","NA",-19.11220496,list(),"NA",yes,6 +1,yes,ward2,no,no,30,NA,"list(F11_no_owned = 2, F_curr_liv = ""poultry"")","NA",uuid:18ac8e77-bdaf-47ab-85a2-e4c947c9d3ce,no,"NA","NA",no,1,"NA",muddaub,1,list(),NULL,NA,3,NA,NA,2017-04-07T15:39:10.000Z,no,NA,1,NULL,district1,cement,list(),2016-11-16,no,2017-04-07T15:27:45.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 1, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)",list(),1,poultry,5,no,NA,radio,NA,yes,"c(""Oct"", ""Nov"")",11,yes,1,NULL,NA,51,"list(B06_memb_education = c(""pri_6"", ""pri_5"", ""pri_1"", ""na"", ""na""), B05_memb_age = c(30, 37, 8, 4, 1), B02_memb_gender = c(""female"", ""male"", ""female"", ""male"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", + ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,12,NA,village1,grass,709,33.48338443,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 051009 +Longetude: 7906182 +Altitude: 732.8m","NA",yes,"c(""go_forest"", ""lab_ex_food"")","NA",-19.11221446,"list(E04_res_water_field = ""other"", E03_crops = list(""maize""), E04_res_water_field_other = ""A parceira esta localizada na zona montanhosa"", E05_tried_access = ""no"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,5 +3,no,ward2,yes,no,15,1,"list(F11_no_owned = c(1, 3, 20), F_curr_liv = c(""oxen"", ""cows"", ""poultry""))","NA",uuid:6db55cb4-a853-4000-9555-757b7fae2bcf,no,"NA","NA",yes,1,"NA",burntbricks,1,list(),"c(""Sept"", ""Oct"", ""Nov"")",A sua produção é para sustentar a sua família ja que o chefe da UD tem emprego.,3,yes,no,2017-04-08T05:02:58.000Z,yes,no,1,NULL,district1,cement,"list(E12_apply_water = ""furrows"", E08_crops = list(""maize""), E09_irr_manager = list(c(""du_head"", ""spouse"")), E09_irr_manager_other = NA, E14_access_other = NA, E08_crops_other = NA, E13_plot_loc = ""near"", E16_amount_pay = NA, E15_duration = NA, E07_bring = ""yes"", E14_access = ""purchased"", E11_water_fields = ""canal_gravity"", E10_water_source = ""river"", E06_plot_no = 1)",2016-11-16,no,2017-04-08T04:44:09.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 2, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 21, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = ""Comprou uma motorizada"", F03_year = 2010, F02_source_income = ""Renda proveniente da produção agrícola"")",3,"c(""oxen"", ""cows"", ""poultry"")",11,no,never,"c(""motorcyle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",less_half,no,"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")",15,no,NA,NULL,NA,52,"list(B06_memb_education = c(""none"", ""pri_7"", ""sec_1"", ""pri_7"", ""sec_1"", ""sec_1"", ""pri_7"", ""pri_7"", ""pri_3"", ""pri_3"", ""pri_2""), B05_memb_age = c(39, 43, 17, 18, 15, 15, 13, 13, 9, 9, 7), B02_memb_gender = c(""female"", ""male"", ""male"", ""female"", ""male"", ""male"", ""male"", ""male"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child"", +""Grandchild"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Holidays"", ""Always"", ""Holidays"", ""Holidays"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""housework"", ""small_scale_farm""), c(""small_scale_farm"", ""salar_job""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:11, B08_interviewee_activities = list( + c(""housework"", ""small_scale_farm""), c(""housework"", ""salar_job""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,10,no,village1,mabatisloping,694,33.48335287,no,15,no,yes,"Ponto geográfico + +Latitude: 0513257 +Longetude: 7906190 +Altitude: 755.4m","NA",yes,"c(""limit_variety"", ""reduce_meals"")","NA",-19.11223637,list(),"NA",no,11 +3,yes,ward2,yes,yes,16,3,"list(F11_no_owned = 5:6, F_curr_liv = c(""oxen"", ""goats""))","NA",uuid:cc7f75c5-d13e-43f3-97e5-4f4c03cb4b12,yes,"NA","NA",yes,3,"NA",burntbricks,2,"list(B13_remitter_location_village = ""Manica"", B15_remitter_location_region_other = NA, B15_remitter_location_region = ""manica"", B14_remitter_location_district = ""Manica"", B12_remittance_money_type = ""Agricultor"")","c(""Aug"", ""Sept"", ""Oct"")","Compra de produtos da primeira necessidade +Compra de utensílios domésticos +Compra de produtos alimentícios +Compra de insumos agrícolas +Compra de produtos de higiene",2,yes,no,2017-04-08T05:33:51.000Z,no,no,3,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, c(""beans"", ""tomatoes"", ""cabbage"", ""vegetable""), ""maize""), E09_irr_manager = list(NULL, ""spouse"", ""spouse""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""far"", ""far""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""inherited"", ""inherited""), E11_water_fields = c(NA, ""canal_gravity"", +""canal_gravity""), E10_water_source = c(NA, ""river"", ""river""), E06_plot_no = 1:3)",2016-11-16,yes,2017-04-08T05:03:08.000Z,"list(D04_crops_harvsted = list(""maize"", c(""beans"", ""tomatoes"", ""cabbage"", ""vegetable""), ""maize""), D01_curr_plot = c(1, 2, 1), D02_total_plot = c(5, 1, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""4"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 2000, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 50, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 720, D22_sell = ""yes"", + D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 650, D12_harvst_amount = 5, D16_imprv_seed = ""yes"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1700), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 300, D19_pesticide = ""own_choice"", + D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 30, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 720, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 650, D12_harvst_amount = 30, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1700), + list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 0.5, D11_harvst_unit = ""other"", D19_pesticide_other = NA, D25_price = 20, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 350, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 720, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 650, D12_harvst_amount = 350, + D16_imprv_seed = ""yes"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = ""Unidades"", D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1700), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Mar"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 5, D10_who_own_other = NA, + D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 720, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 650, D12_harvst_amount = 5, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1700)), D_curr_crop = c(""beans"", ""tomatoes"", ""cabbage"", ""vegetable"" +), D_repeat_times_count = c(""1"", ""1"", ""1"", ""1""), D05_times = c(1, 1, 1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 3, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = ""Comprou cabeças de gado, caprino e bovino \nConstrução de habitação \nPagamento de despesas escolares dos filhos"", F03_year = 2013, F02_source_income = ""Renda proveniente da produção agrícola"")",2,"c(""oxen"", ""goats"")",8,no,frequently,"c(""bicycle"", ""radio"", ""mobile_phone"")",more_half,yes,Nov,16,no,NA,NULL,no,21,"list(B06_memb_education = c(""pri_3"", ""sec_1"", ""pri_6"", ""pri_4"", ""pri_6"", ""pri_2"", ""na"", ""na""), B05_memb_age = c(35, 30, 17, 12, 16, 8, 5, 2), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""female"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Holidays"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""comm_farming"", ""na"", ""comm_farming"", ""na"", ""comm_farming"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = c(1, 2, 4, 4, 5, 6, 7, 8), B08_interviewee_activities = list(c(""housework"", ""comm_farming""), ""na"", c(""housework"", ""comm_farming""), ""na"", c(""housework"", ""comm_farming""), ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, +NA, NA, NA, NA, NA, NA, NA))",province1,10,yes,village1,mabatisloping,687,33.48343865,yes,16,no,no,"Ponto geográfico +Latitude: 0513006 +Longetude: 7906789 +Altitude: 737.4m","NA",yes,"c(""rely_less_food"", ""limit_portion"")","NA",-19.11216571,list(),"NA",no,8 +1,yes,ward2,yes,no,15,1,list(),"NA",uuid:273ab27f-9be3-4f3b-83c9-d3e1592de919,no,"NA","NA",yes,1,"NA",muddaub,3,"list(B13_remitter_location_village = ""25 de Setembro"", B15_remitter_location_region_other = NA, B15_remitter_location_region = ""manica"", B14_remitter_location_district = ""Chimoio"", B12_remittance_money_type = ""Professor"")","c(""Aug"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")","Compra mobiliário +Compra de produtos alimentícios +Compra de produtos de higiene",2,yes,no,2017-04-08T05:52:15.000Z,no,no,1,NULL,district1,earth,"list(E12_apply_water = ""sprinkler"", E08_crops = list(c(""maize"", ""tomatoes"")), E09_irr_manager = list(c(""du_head"", ""spouse"")), E09_irr_manager_other = NA, E14_access_other = NA, E08_crops_other = NA, E13_plot_loc = ""middle"", E16_amount_pay = NA, E15_duration = NA, E07_bring = ""yes"", E14_access = ""allocated_cus_aut"", E11_water_fields = ""canal_gravity"", E10_water_source = ""river"", E06_plot_no = 1)",2016-11-16,yes,2017-04-08T05:36:55.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""tomatoes"")), D01_curr_plot = 1, D02_total_plot = 1, D03_unit_land = ""hactare"", D_crops_count = ""2"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", + D19_pesticide_other = NA, D25_price = 400, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 750, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 4, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = c(""maize"", ""tomatoes""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1))), D03_unit_land_other = NA)","list(F01_item = ""Construiu uma casa"", F03_year = 2006, F02_source_income = ""Renda proveniente da produção agrícola"")",1,none,7,no,never,NULL,more_half,yes,"c(""Sept"", ""Oct"", ""Nov"")",10,no,NA,NULL,NA,54,"list(B06_memb_education = c(""pri_4"", ""pri_6"", ""pri_7"", ""pri_7"", ""pri_2"", ""pri_2"", ""na""), B05_memb_age = c(50, 35, 16, 15, 11, 8, 4), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), + B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = c(1, 2, 3, 40, 5, 6, 7), B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,9,yes,village1,grass,681,33.48335527,no,10,no,no,"Ponto geográfico + +Latitude: 0513028 +Longetude: 7905929 +Altitude: 727.8m","NA",no,"c(""rely_less_food"", ""lab_ex_food"")","NA",-19.11220247,list(),"NA",no,7 +2,yes,ward2,no,no,23,NA,"list(F11_no_owned = 1, F_curr_liv = ""goats"")","NA",uuid:883c0433-9891-4121-bc63-744f082c1fa0,no,"NA","NA",yes,1,"NA",muddaub,2,list(),NULL,NA,2,NA,NA,2017-04-08T06:05:41.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-16,no,2017-04-08T05:52:32.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 4, D02_total_plot = 9, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 9, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = c(""Comprou cabeças de gado caprino"", ""Comprou televisor e gerador""), F03_year = 2013:2014, F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",1,goats,9,no,NA,"c(""television"", ""cow_plough"", ""mobile_phone"")",NA,yes,"c(""Oct"", ""Nov"")",23,no,1,NULL,NA,55,"list(B06_memb_education = c(""pri_4"", ""pri_3"", ""pri_4"", ""pri_3"", ""pri_3"", ""na"", ""na"", ""na"", ""na""), B05_memb_age = c(35, 31, 12, 10, 8, 6, 4, 2, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""male"", ""male"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", +""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = c(1, 2, 2, 4, 5, 6, 7, 8, 9), B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", + ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,11,NA,village1,grass,702,33.48333393,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 0513258 +Longetude: 7906420 +Altitude: 756.9m","NA",yes,lab_ex_food,"NA",-19.11228974,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,9 +2,yes,ward2,yes,yes,23,2,"list(F11_no_owned = c(10, 4), F_curr_liv = c(""oxen"", ""goats""))","NA",uuid:973c4ac6-f887-48e7-aeaf-4476f2cfab76,yes,"NA","NA",yes,2,"NA",burntbricks,4,list(),"c(""Sept"", ""Oct"")","Compra produtos da primeira necessidade +Compra produtos de higiene",3,yes,no,2017-04-08T06:26:12.000Z,no,no,2,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, c(""child"", ""parent"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2016-11-16,no,2017-04-08T06:05:59.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(5.5, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 5.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1200, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 20, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 4200, D12_harvst_amount = 133, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), + list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 1500, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 50, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 750, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 2500, + D12_harvst_amount = 50, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 6400)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Comprou cabeças de gado bovino \nConstruiu uma moradia \nComprou bens da casa"", F03_year = 2012, F02_source_income = ""Renda proveniente da produção agrícola"")",2,"c(""oxen"", ""goats"")",12,no,never,"c(""motorcyle"", ""bicycle"", ""mobile_phone"")",more_half,yes,none,23,no,NA,NULL,no,56,"list(B06_memb_education = c(""pri_4"", ""pri_3"", ""pri_7"", ""sec_1"", ""sec_1"", ""pri_4"", ""pri_2"", ""na"", ""na"", ""pri_2"", ""na"", ""na""), B05_memb_age = c(46, 38, 24, 17, 15, 12, 8, 7, 2, 8, 5, 2), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""male"", ""female"", ""female"", ""female"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", +""Spouse"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""comm_farming"", c(""small_scale_farm"", ""comm_farming""), ""comm_farming"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA +), B_memb_no = 1:12, B08_interviewee_activities = list(c(""housework"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,10,yes,village1,mabatisloping,689,33.48341837,yes,23,no,no,"Ponto geográfico + +Latitude: 0513209 +Longetude: 67905987 +Altitude: 734.8m","NA",yes,na,"NA",-19.11217264,list(),"NA",no,12 +1,yes,ward2,yes,yes,27,2,list(),"NA",uuid:a7184e55-0615-492d-9835-8f44f3b03a71,yes,"NA","NA",no,2,"NA",burntbricks,4,list(),NULL,"Compra de produtos alimentícios, insumos agrícolas e produtos de higiene.",2,no,no,2017-04-08T06:39:40.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(""furrows"", ""furrows""), E08_crops = list(""maize"", ""other""), E09_irr_manager = list(""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, ""Inhame""), E13_plot_loc = c(""near"", ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""yes"", ""yes""), E14_access = c(""inherited"", ""inherited""), E11_water_fields = c(""canal_gravity"", ""canal_gravity""), E10_water_source = c(""river"", ""river""), E06_plot_no = 1:2)",2016-11-16,no,2017-04-08T06:26:22.000Z,"list(D04_crops_harvsted = list(""maize"", ""other""), D01_curr_plot = 1:2, D02_total_plot = c(1, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, ""Inhame""), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1400, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 4, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 14, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 2400, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 3, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""other"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Comprou mobiliário da casa\nComprou radio\nComprou painel solar"", F03_year = 2015, F02_source_income = ""Renda proveniente da produção agrícola"")",1,none,4,no,never,radio,less_half,yes,none,20,no,NA,NULL,NA,57,"list(B06_memb_education = c(""sec_3"", ""sec_2"", ""na"", ""na""), B05_memb_age = c(27, 22, 2, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA), B_memb_no = 1:4, + B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA))",province1,10,yes,village1,grass,695,33.48338576,no,20,no,no,"Ponto geográfico + +Latitude: 0313307 +Longetude: 7910052 +Altitude: 738m","NA",yes,na,"NA",-19.11227947,list(),"NA",no,4 +3,yes,ward2,yes,yes,45,3,"list(F11_no_owned = c(2, 4, 3), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:a7a3451f-cd0d-4027-82d9-8dcd1234fcca,yes,"NA","NA",no,3,"NA",burntbricks,5,list(),NULL,Compra produtos da primeira necessidade,2,no,no,2017-04-08T08:48:51.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(""furrows"", ""furrows"", NA), E08_crops = list(""beans"", ""other"", NULL), E09_irr_manager = list(""du_head"", ""du_head"", NULL), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, ""Inhame"", NA), E13_plot_loc = c(""near"", ""near"", NA), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""yes"", ""yes"", ""no""), E14_access = c(""inherited"", ""inherited"", NA), E11_water_fields = c(""canal_gravity"", ""canal_gravity"", NA), E10_water_source = c(""river"", +""river"", NA), E06_plot_no = 1:3)",2016-11-16,no,2017-04-08T08:25:49.000Z,"list(D04_crops_harvsted = list(""beans"", ""other"", ""maize""), D01_curr_plot = 1:3, D02_total_plot = c(3, 0.5, 10), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, ""Inhame"", NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Feb"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 2000, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 1, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""beans"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 19, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 19, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""other"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", + D19_pesticide_other = NA, D25_price = 900, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 60, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 85, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", + D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Comprou motorizada"", ""Construiu uma casa""), F03_year = c(2011, 2015, 2008), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",11,no,never,"c(""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",more_half,yes,none,35,no,NA,NULL,NA,58,"list(B06_memb_education = c(""pri_4"", ""pri_2"", ""sec_3"", ""sec_4"", ""pri_7"", ""pri_6"", ""pri_6"", ""pri_4"", ""pri_3"", ""pri_2"", ""na""), B05_memb_age = c(45, 38, 27, 24, 20, 17, 15, 13, 10, 8, 6), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male"", ""male"", ""female"", ""male"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""married"", ""married"", ""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""other"", ""other"", +""other"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Occasional"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""small_scale_farm"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:11, + B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""small_scale_farm"", ""na""), B03_relationship_du_other = c(NA, NA, ""Irmão"", ""Irmão"", ""Irmão"", NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,11,yes,village1,mabatisloping,723,33.48332076,no,35,no,no,"Ponto geográfico +Latitude: 9513307 +Longetude: 7910052 +Altitude: 738m","NA",yes,na,"NA",-19.1121758,list(),"NA",no,11 +3,yes,ward2,no,yes,60,NA,"list(F11_no_owned = c(1, 1, 13), F_curr_liv = c(""oxen"", ""cows"", ""poultry""))","NA",uuid:1936db62-5732-45dc-98ff-9b3ac7a22518,yes,"NA","NA",no,2,"NA",muddaub,1,list(),NULL,NA,2,NA,NA,2017-04-08T09:02:34.000Z,no,NA,2,NULL,district1,earth,list(),2016-11-16,no,2017-04-08T08:52:05.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""other""), ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(0.5, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""2"", ""1""), D04_crops_harvsted_other = c(""Inhame"", NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 400, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list( + ""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", + D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""other""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 18, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Construiu sua habitação"", F03_year = 2015, F02_source_income = ""Renda proveniente da produção agrícola"")",3,"c(""oxen"", ""cows"", ""poultry"")",2,no,NA,NULL,NA,yes,none,60,no,2,NULL,NA,59,"list(B06_memb_education = c(""pri_2"", ""pri_4""), B05_memb_age = c(70, 45), B02_memb_gender = c(""female"", ""male""), B04_memb_marital_status = c(""widow/er"", ""married""), B03_relationship_du = c(""head"", ""Child""), B07_residence_status = c(""Always"", ""Occasional""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm""), B09_interviewee_main_activities_other = c(NA, NA), B_memb_no = 1:2, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), ""small_scale_farm""), B03_relationship_du_other = c(NA, +NA), B08_interviewee_activities_other = c(NA, NA))",province1,13,NA,village1,grass,683,33.48333251,NA,"NA",NA,yes,"Ponto geográfico + +Latitude: 0513307 +Longetude: 7910052 +Altitude: 738m","NA",no,na,"NA",-19.1123395,"list(E04_res_water_field = c(""field_wet"", ""land_far""), E03_crops = list(""maize"", ""maize""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""no"", ""yes_no_land_chied""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",no,2 +2,yes,ward2,yes,yes,15,3,"list(F11_no_owned = c(3, 5, 5, 9), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""poultry""))","NA",uuid:85465caf-23e4-4283-bb72-a0ef30e30176,yes,"NA","NA",yes,3,"NA",burntbricks,3,list(),"c(""Aug"", ""Sept"", ""Oct"")","Compra produtos alimentícios +Compra vestuários +Paga despesas escolares +Compra produtos de higiene",2,yes,no,2017-04-08T09:20:18.000Z,no,no,3,NULL,district2,earth,"list(E12_apply_water = c(""furrows"", ""furrows"", ""furrows""), E08_crops = list(""maize"", ""tomatoes"", ""peanut""), E09_irr_manager = list(c(""du_head"", ""spouse"", ""other_rel""), c(""du_head"", ""spouse"", ""other_rel""), c(""du_head"", ""spouse"", ""other_rel"")), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(""far"", ""middle"", ""far""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""yes"", ""yes"", ""yes""), E14_access = c(""purchased"", +""purchased"", ""purchased""), E11_water_fields = c(""canal_gravity"", ""canal_gravity"", ""canal_gravity""), E10_water_source = c(""river"", ""river"", ""river""), E06_plot_no = 1:3)",2016-11-16,no,2017-04-08T09:03:01.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""peanut""), D01_curr_plot = 1:3, D02_total_plot = c(2, 1, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Sept"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 25, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 3000)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""other_non_rel""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 500, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 80, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 850, D22_sell = ""yes"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 80, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""bags"", + D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 150, D12_harvst_amount = 20, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""none""), D14_cost_fert = NA)), D_curr_crop = ""peanut"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = ""Comprou cabeças de gado bovino e caprino"", F03_year = 2002, F02_source_income = ""Renda proveniente da produção agrícola"")",4,"c(""oxen"", ""cows"", ""goats"", ""poultry"")",8,no,never,cow_plough,more_half,yes,none,12,yes,NA,NULL,NA,60,"list(B06_memb_education = c(""pri_7"", ""pri_3"", ""pri_7"", ""pri_2"", ""pri_2"", ""pri_1"", ""na"", ""na""), B05_memb_age = c(35, 30, 16, 10, 8, 7, 5, 1), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, +NA, NA, NA, NA, NA))",province1,11,yes,village1,grass,694,33.48341208,no,12,no,no,"Ponto geográfico + +Latitude: 0513452 +Longetude: 7907930 +Altitude: 759m","NA",yes,na,"NA",-19.11225763,list(),"NA",yes,8 +1,yes,ward2,yes,yes,14,2,"list(F11_no_owned = c(2, 6, 12), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:2401cf50-8859-44d9-bd14-1bf9128766f2,yes,"NA","NA",yes,2,"NA",muddaub,4,list(),"c(""Aug"", ""Sept"", ""Oct"")","Compra vestuários +Pagamento de despesas escolares",3,yes,no,2017-04-08T11:14:09.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(""furrows"", NA), E08_crops = list(c(""tomatoes"", ""onion"", ""cabbage"", ""vegetable"", ""piri_piri""), NULL), E09_irr_manager = list(""du_head"", NULL), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(""near"", NA), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""yes"", ""no""), E14_access = c(""purchased"", NA), E11_water_fields = c(""canal_gravity"", NA), E10_water_source = c(""river"", NA), E06_plot_no = 1:2)",2016-11-16,no,2017-04-08T10:47:11.000Z,"list(D04_crops_harvsted = list(c(""tomatoes"", ""onion"", ""cabbage"", ""vegetable"", ""piri_piri""), ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(2, 6), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""5"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 2, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = ""own_choice"", + D07_ploughing_typ = ""ox"", D24_amnt_sold = 45, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 1200, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 600, D17_cost_seed = 800, D12_harvst_amount = 45, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), + D14_cost_fert = 1500), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 200, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 40, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 200, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = 500, D12_harvst_amount = 40, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500), list(D26_who_sell_harv = list(""spouse"", ""spouse""), D10_who_own = c(""head_spouse_free"", ""head_spouse_free""), D06_mnth_harvest = c(""Feb"", ""May""), D08_land_planted = c(2, 1), D11_harvst_unit = c(""other"", ""other""), D19_pesticide_other = c(NA, +NA), D25_price = c(25, 25), D19_pesticide = c(""own_choice"", NA), D07_ploughing_typ = c(""ox"", ""ox""), D24_amnt_sold = c(100, 100), D10_who_own_other = c(NA, NA), D_use_pest = c(""yes"", ""no""), D26_who_sell_harv_other = c(NA, NA), D15_cost_manu = c(NA, NA), D07_ploughing_typ_other = c(NA, NA), D18_cost_pestcd = c(200, NA), D22_sell = c(""yes"", ""yes""), D20_paid_labour = c(""no"", ""no""), D21_cost_labour = c(NA, NA), D17_cost_seed = c(700, NA), D12_harvst_amount = c(250, 100), D16_imprv_seed = c(""yes"", ""no"" +), D23_where_sold = list(""visiting_traders"", ""visiting_traders""), D11_harvst_unit_other = c(""Unidades"", ""Unidades""), D09_land_ownshp_other = c(NA, NA), D09_land_ownshp = c(""owned"", ""owned""), D13_fertilizer = list(""paid_fertilizer"", ""none""), D14_cost_fert = c(1500, NA)), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", + D24_amnt_sold = 8, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 200, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 500, D12_harvst_amount = 8, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500), list(D26_who_sell_harv = list( + ""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Nov"", D08_land_planted = 2, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 400, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 112, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 112, D16_imprv_seed = ""no"", + D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500)), D_curr_crop = c(""tomatoes"", ""onion"", ""cabbage"", ""vegetable"", ""piri_piri""), D_repeat_times_count = c(""1"", ""1"", ""1"", ""1"", ""1""), D05_times = c(1, 1, 1, 1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 6, D11_harvst_unit = ""bags"", + D19_pesticide_other = NA, D25_price = 1200, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 40, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", + D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou motorizada e 6 cabeças de gado bovino"", ""Comprou carroca de boi""), F03_year = c(2014, 2012), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",10,no,more_once,"c(""cow_cart"", ""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""table"", ""mobile_phone"")",more_half,no,"c(""Jan"", ""Feb"", ""Dec"")",14,no,NA,NULL,yes,61,"list(B06_memb_education = c(""pri_2"", ""pri_7"", ""pri_5"", ""pri_7"", ""pri_6"", ""pri_3"", ""pri_2"", ""pri_6"", ""na"", ""na""), B05_memb_age = c(38, 25, 40, 15, 12, 9, 6, 16, 1, 3), B02_memb_gender = c(""female"", ""female"", ""male"", ""female"", ""male"", ""female"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""Spouse"", ""head"", ""Child"", ""Child"", ""Child"", +""Child"", ""Child"", ""Child"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list( + c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,13,yes,village1,grass,712,33.48341635,yes,13,no,no,"Ponto geográfico + +Latitude: 0513220 +Longetude: 7907642 +Altitude: 757m","NA",yes,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""restrict_adults"")","NA",-19.11218035,list(),"NA",yes,10 +1,no,ward2,no,no,5,NA,list(),"NA",uuid:c6597ecc-cc2a-4c35-a6dc-e62c71b345d6,no,"NA","NA",no,2,"NA",muddaub,3,list(),NULL,NA,3,NA,NA,2017-04-08T13:41:21.000Z,no,NA,2,NULL,district1,earth,list(),2016-11-16,no,2017-04-08T13:27:58.000Z,"list(D04_crops_harvsted = list(""maize"", ""sorghum""), D01_curr_plot = 1:2, D02_total_plot = c(0.5, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = c(NA, NA), D10_who_own = c(""head_spouse_free"", ""head_spouse_free""), D06_mnth_harvest = c(""May"", ""May""), D08_land_planted = c(0.5, 0.5), D11_harvst_unit = c(""bags"", ""bags""), D19_pesticide_other = c(NA, NA), D25_price = c(NA, +NA), D19_pesticide = c(NA, NA), D07_ploughing_typ = c(""ox"", ""ox""), D24_amnt_sold = c(NA, NA), D10_who_own_other = c(NA, NA), D_use_pest = c(""no"", ""no""), D26_who_sell_harv_other = c(NA, NA), D15_cost_manu = c(NA, NA), D07_ploughing_typ_other = c(NA, NA), D18_cost_pestcd = c(NA, NA), D22_sell = c(""no"", ""no""), D20_paid_labour = c(""no"", ""no""), D21_cost_labour = c(NA, NA), D17_cost_seed = c(NA, NA), D12_harvst_amount = c(12, 2), D16_imprv_seed = c(""no"", ""no""), D23_where_sold = c(NA, NA), D11_harvst_unit_other = c(NA, +NA), D09_land_ownshp_other = c(NA, NA), D09_land_ownshp = c(""owned"", ""owned""), D13_fertilizer = list(""none"", ""none""), D14_cost_fert = c(NA, NA))), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""sorghum"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, +NA))","list(F01_item = ""Comprou utensílios domésticos \nCompra vestuários"", F03_year = 2015, F02_source_income = ""Renda proveniente da produção agrícola,"")",1,none,5,no,NA,"c(""bicycle"", ""radio"", ""mobile_phone"")",NA,yes,"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")",5,yes,2,NULL,NA,62,"list(B06_memb_education = c(""pri_4"", ""pri_1"", ""pri_4"", ""pri_3"", ""pri_2""), B05_memb_age = c(25, 30, 16, 14, 10), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""other"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, +""Garimpo"", NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), ""other"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, ""Garimpo"", NA, NA, NA))",province1,18,NA,village1,grass,719,33.48339699,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 0513275 +Longetude: 7907870 +Altitude: 758m","NA",no,"c(""rely_less_food"", ""limit_variety"", ""limit_portion"", ""reduce_meals"", ""restrict_adults"", ""borrow_food"", ""go_forest"", ""lab_ex_food"")","NA",-19.11216869,"list(E04_res_water_field = c(""land_far"", ""land_far""), E03_crops = list(""maize"", c(""sorghum"", ""bananas"")), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""yes_no_land_chied"", ""yes_no_land_chied""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",no,5 +1,no,ward2,no,yes,10,NA,list(),"NA",uuid:86ed4328-7688-462f-aac7-d6518414526a,yes,"NA","NA",no,1,"NA",muddaub,1,list(),NULL,NA,3,NA,NA,2017-04-08T13:52:07.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-16,no,2017-04-08T13:41:39.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""sesame"")), D01_curr_plot = 1, D02_total_plot = 1.5, D03_unit_land = ""hactare"", D_crops_count = ""2"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 12, D10_who_own_other = NA, D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""July"", + D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 2000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""sesame""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1))), D03_unit_land_other = NA)","list(F01_item = ""Abriu um negócio"", F03_year = 2014, F02_source_income = ""Renda proveniente da produção agrícola"")",1,none,4,no,NA,NULL,NA,yes,"c(""Jan"", ""Oct"", ""Nov"", ""Dec"")",1,yes,1,NULL,NA,63,"list(B06_memb_education = c(""sec_2"", ""pri_6"", ""pri_1"", ""na""), B05_memb_age = c(25, 25, 8, 5), B02_memb_gender = c(""male"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child""), B07_residence_status = c(""Occasional"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""artisan"", ""small_scale_farm"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA), B_memb_no = 1:4, + B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA))",province1,25,NA,village1,grass,702,33.4833903,NA,"NA",NA,yes,"Ponto geográfico + +Latitude: 0513139 +Longetude: 7907592 +Altitude: 757m","NA",yes,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""restrict_adults"")","NA",-19.11220024,"list(E04_res_water_field = ""land_far"", E03_crops = list(c(""maize"", ""sesame"")), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,4 +1,no,ward2,no,no,1,NA,"list(F11_no_owned = 7, F_curr_liv = ""goats"")","NA",uuid:28cfd718-bf62-4d90-8100-55fafbe45d06,no,"NA","NA",yes,2,"NA",muddaub,2,list(),NULL,NA,3,NA,NA,2017-04-08T14:02:24.000Z,no,NA,2,NULL,district1,earth,list(),2016-11-16,no,2017-04-08T13:52:30.000Z,"list(D04_crops_harvsted = list(""maize"", ""sesame""), D01_curr_plot = 1:2, D02_total_plot = c(2, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 960, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", + D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 100, D12_harvst_amount = 10, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""spouse_du_parts"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 2500, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 7, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = 150, D12_harvst_amount = 7, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""sesame"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Construiu uma casa"", F03_year = 2016, F02_source_income = ""Renda proveniente da produção agrícola"")",1,goats,6,no,NA,"c(""bicycle"", ""solar_torch"", ""table"", ""sofa_set"", ""mobile_phone"")",NA,no,"c(""Jan"", ""Feb"", ""Dec"")",1,no,2,NULL,NA,64,"list(B06_memb_education = c(""none"", ""pri_4"", ""pri_3"", ""pri_2"", ""na"", ""na""), B05_memb_age = c(28, 30, 13, 9, 5, 2), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", + ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,9,NA,village1,grass,704,33.48339576,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 0513266 +Longetude: 7908155 +Altitude: 746m","NA",no,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""restrict_adults"", ""lab_ex_food"")","NA",-19.1121962,"list(E04_res_water_field = c(""land_far"", ""field_wet""), E03_crops = list(""maize"", ""sesame""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""yes_no_land_sale"", ""yes_no_land_sale""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",no,6 +3,no,ward2,yes,no,20,2,"list(F11_no_owned = c(2, 3, 5), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:143f7478-0126-4fbc-86e0-5d324339206b,no,"NA","NA",yes,2,"NA",burntbricks,2,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra produtos alimentícios +Compra produtos de higiene +Compra vestuários",3,yes,no,2017-04-08T14:15:45.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, c(""child"", ""parent"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""allocated_cus_aut""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2016-11-16,no,2017-04-08T14:02:49.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(2, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 24, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Oct"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 400, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 50, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 750, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 900, D12_harvst_amount = 50, + D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1400)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Comprou cabeças de gado bovino \nConstrução sua morada \nComprou uma motorizada"", F03_year = 2010, F02_source_income = ""Renda proveniente da produção agrícola"")",3,"c(""oxen"", ""cows"", ""goats"")",8,no,once,"c(""motorcyle"", ""radio"", ""cow_plough"", ""table"")",abt_half,no,"c(""Jan"", ""Feb"", ""Mar"")",20,no,NA,NULL,NA,65,"list(B06_memb_education = c(""pri_3"", ""pri_4"", ""sec_3"", ""sec_1"", ""pri_6"", ""pri_6"", ""pri_4"", ""na""), B05_memb_age = c(40, 35, 20, 18, 15, 12, 9, 6), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""male"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, +NA))",province1,39,yes,village1,mabatisloping,706,33.48341209,no,20,no,no,"Ponto geográfico + +Latitude: 0511306 +Longetude: 7908924 +Altitude: 690.2m","NA",no,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""lab_ex_food"")","NA",-19.11221474,list(),"NA",no,8 +3,no,ward2,yes,no,37,1,"list(F11_no_owned = c(2, 4, 10, 1), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""donkeys""))","NA",uuid:a457eab8-971b-4417-a971-2e55b8702816,no,"NA","NA",yes,1,"NA",burntbricks,5,list(),"c(""Aug"", ""Sept"", ""Oct"")","Usa para fazer dispensas da casa +Compra insumos agrícolas +Compra vestuários",3,yes,no,2017-04-08T21:33:45.000Z,yes,no,1,NULL,district1,cement,"list(E12_apply_water = ""furrows"", E08_crops = list(c(""beans"", ""tomatoes"", ""onion"", ""vegetable"")), E09_irr_manager = list(""du_head""), E09_irr_manager_other = NA, E14_access_other = NA, E08_crops_other = NA, E13_plot_loc = ""near"", E16_amount_pay = NA, E15_duration = NA, E07_bring = ""yes"", E14_access = ""inherited"", E11_water_fields = ""canal_gravity"", E10_water_source = ""canal"", E06_plot_no = 1)",2016-11-16,no,2017-04-08T21:09:38.000Z,"list(D04_crops_harvsted = list(c(""beans"", ""tomatoes"", ""onion"", ""vegetable"")), D01_curr_plot = 1, D02_total_plot = 8, D03_unit_land = ""hactare"", D_crops_count = ""4"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Feb"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1400, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 4, + D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 900, D12_harvst_amount = 4, D16_imprv_seed = ""yes"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500), list(D26_who_sell_harv = list(""spouse""), + D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Mar"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 150, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 750, D12_harvst_amount = 150, D16_imprv_seed = ""yes"", + D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500), list(D26_who_sell_harv = list(""spouse"", ""spouse""), D10_who_own = c(""head_spouse_free"", ""head_spouse_free""), D06_mnth_harvest = c(""July"", ""Aug""), D08_land_planted = c(0.5, 0.5), D11_harvst_unit = c(""crates"", ""crates""), D19_pesticide_other = c(NA, NA), D25_price = c(500, 500), D19_pesticide = c(""own_choice"", ""own_choice"" +), D07_ploughing_typ = c(""ox"", ""ox""), D24_amnt_sold = c(30, 20), D10_who_own_other = c(NA, NA), D_use_pest = c(""yes"", ""yes""), D26_who_sell_harv_other = c(NA, NA), D15_cost_manu = c(NA, NA), D07_ploughing_typ_other = c(NA, NA), D18_cost_pestcd = c(1000, 100), D22_sell = c(""yes"", ""yes""), D20_paid_labour = c(""no"", ""no""), D21_cost_labour = c(NA, NA), D17_cost_seed = c(350, 900), D12_harvst_amount = c(30, 20), D16_imprv_seed = c(""yes"", ""yes""), D23_where_sold = list(""local_market"", ""main_road""), D11_harvst_unit_other = c(NA, +NA), D09_land_ownshp_other = c(NA, NA), D09_land_ownshp = c(""owned"", ""owned""), D13_fertilizer = list(""paid_fertilizer"", ""paid_fertilizer""), D14_cost_fert = c(150, 1500)), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 30, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 400, D12_harvst_amount = 30, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500)), D_curr_crop = c(""beans"", ""tomatoes"", ""onion"", ""vegetable""), D_repeat_times_count = c(""1"", ""1"", ""1"", ""1"" +), D05_times = c(1, 1, 1, 1))), D03_unit_land_other = NA)","list(F01_item = c(""Comprou motorizada"", ""Comprou cabeças de gado bovino"", ""Construiu sua casa"", ""Comprou caroça de bois""), F03_year = c(2001, 2003, 2005, 2006), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",4,"c(""oxen"", ""cows"", ""goats"", ""donkeys"")",10,no,frequently,"c(""cow_cart"", ""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""mobile_phone"")",more_half,yes,none,16,no,NA,NULL,no,66,"list(B06_memb_education = c(""sec_1"", ""pri_5"", ""pri_7"", ""pri_7"", ""pri_7"", ""pri_4"", ""pri_2"", ""na"", ""na"", ""na""), B05_memb_age = c(37, 26, 20, 13, 12, 10, 7, 4, 3, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""male"", ""male"", ""female"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", +""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list(""small_scale_farm"", + c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,8,no,village1,mabatipitched,702,33.48339142,yes,10,no,yes,"Ponto geográfico + +Latitude: 0513168 +Longetude: 7907004 +Altitude: 730m","NA",yes,na,"NA",-19.1121722,list(),"NA",yes,10 +2,yes,ward2,yes,no,31,1,"list(F11_no_owned = c(1, 3, 3, 3), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""donkeys""))","NA",uuid:6c15d667-2860-47e3-a5e7-7f679271e419,no,"NA","NA",yes,1,"NA",burntbricks,1,list(),"c(""Oct"", ""Nov"")","Compra de produtos alimentícios +Compra de vestuários +Compra de insumos agrícolas",3,yes,no,2017-04-08T21:49:02.000Z,yes,no,1,NULL,district1,cement,"list(E12_apply_water = ""furrows"", E08_crops = list(c(""maize"", ""tomatoes"", ""vegetable"")), E09_irr_manager = list(""du_head""), E09_irr_manager_other = NA, E14_access_other = NA, E08_crops_other = NA, E13_plot_loc = ""near"", E16_amount_pay = NA, E15_duration = NA, E07_bring = ""yes"", E14_access = ""inherited"", E11_water_fields = ""canal_gravity"", E10_water_source = ""canal"", E06_plot_no = 1)",2016-11-16,no,2017-04-08T21:34:23.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""tomatoes"", ""vegetable"")), D01_curr_plot = 1, D02_total_plot = 6, D03_unit_land = ""hactare"", D_crops_count = ""3"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 17, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", + D08_land_planted = 0.3, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 300, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 16, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 780, D12_harvst_amount = 16, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 10, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, + D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 450, D12_harvst_amount = 10, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = c(""maize"", ""tomatoes"", ""vegetable""), D_repeat_times_count = c(""1"", ""1"", ""1""), D05_times = c(1, 1, 1))), D03_unit_land_other = NA)","list(F01_item = c(""Comprou motorizada"", ""Construiu a sua casa"", ""Pagou despesas escolares""), F03_year = c(2015, 1999, 2015), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",4,"c(""oxen"", ""cows"", ""goats"", ""donkeys"")",5,no,more_once,"c(""motorcyle"", ""radio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",more_half,yes,none,9,yes,NA,NULL,NA,67,"list(B06_memb_education = c(""sec_3"", ""pri_7"", ""na"", ""na"", ""na""), B05_memb_age = c(31, 21, 5, 3, 1), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming"" +), ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,11,yes,village1,mabatipitched,717,33.48338805,no,9,no,no,"Ponto geográfico + +Latitude: 0513148 +Longetude: 7907004 +Altitude: 730m","NA",yes,na,"NA",-19.11209398,list(),"NA",yes,5 +3,no,ward2,yes,yes,52,3,"list(F11_no_owned = c(3, 3, 1), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:ef04b3eb-b47d-412e-9b09-4f5e08fc66f9,no,"NA","NA",yes,3,"NA",burntbricks,3,list(),"c(""Nov"", ""Dec"")","Compra vestuários +Compra produtos alimentícios +Compra insumos agrícolas",3,yes,no,2017-04-09T22:06:57.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(""furrows"", ""furrows"", ""furrows""), E08_crops = list(""maize"", ""piri_piri"", ""maize""), E09_irr_manager = list(""du_head"", ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(""near"", ""near"", ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""yes"", ""yes"", ""yes""), E14_access = c(""inherited"", ""inherited"", ""inherited""), E11_water_fields = c(""canal_gravity"", +""canal_gravity"", ""canal_gravity""), E10_water_source = c(""canal"", ""canal"", ""canal""), E06_plot_no = 1:3)",2016-11-16,no,2017-04-08T21:49:40.000Z,"list(D04_crops_harvsted = list(""maize"", ""piri_piri"", ""maize""), D01_curr_plot = 1:3, D02_total_plot = c(1.5, 1.5, 2), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Feb"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 19, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 13, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 15, D16_imprv_seed = ""no"", D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""piri_piri"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Dec"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, + D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 38, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), + D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Construiu a sua casa"", ""Pagou despesas escolares dos filhos""), F03_year = 2015:2016, F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",8,no,more_once,"c(""motorcyle"", ""television"", ""sterio"", ""solar_panel"", ""mobile_phone"")",more_half,yes,none,21,no,NA,NULL,NA,68,"list(B06_memb_education = c(""pri_5"", ""pri_2"", ""sec_3"", ""sec_1"", ""pri_7"", ""pri_4"", ""pri_4"", ""pri_3""), B05_memb_age = c(52, 38, 18, 15, 13, 13, 11, 9), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""female"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, +NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA))",province1,10,yes,village1,mabatipitched,710,33.4834782,no,21,no,no,"Ponto geográfico + +Latitude: 0513358 +Longetude: 7907664 +Altitude: 766m","NA",yes,na,"NA",-19.11214985,list(),"NA",no,8 +1,no,ward2,yes,no,12,1,"list(F11_no_owned = 2, F_curr_liv = ""goats"")","NA",uuid:f86933a5-12b8-4427-b821-43c5b039401d,no,"NA","NA",yes,1,"NA",muddaub,2,list(),"c(""Nov"", ""Dec"")","Compra alimentos +Compra vestuários +Compra material escolar",3,yes,no,2017-04-09T22:21:08.000Z,no,no,1,NULL,district1,earth,"list(E12_apply_water = ""furrows"", E08_crops = list(c(""maize"", ""tomatoes"")), E09_irr_manager = list(""du_head""), E09_irr_manager_other = NA, E14_access_other = NA, E08_crops_other = NA, E13_plot_loc = ""near"", E16_amount_pay = NA, E15_duration = NA, E07_bring = ""yes"", E14_access = ""purchased"", E11_water_fields = ""canal_gravity"", E10_water_source = ""canal"", E06_plot_no = 1)",2016-11-16,no,2017-04-09T22:08:07.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""tomatoes"")), D01_curr_plot = 1, D02_total_plot = 3, D03_unit_land = ""hactare"", D_crops_count = ""2"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 5, D10_who_own_other = NA, D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 9, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1200), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", + D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 500, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 20, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 950, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1220, D12_harvst_amount = 20, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1200)), D_curr_crop = c(""maize"", ""tomatoes""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1))), D03_unit_land_other = NA)","list(F01_item = c(""Construiu a sua moradia"", ""Pagou despesas escolares dos filhos""), F03_year = c(2015, 2003), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",1,goats,4,no,more_once,"c(""bicycle"", ""radio"", ""solar_torch"", ""mobile_phone"")",more_half,no,none,12,no,NA,NULL,NA,69,"list(B06_memb_education = c(""pri_4"", ""pri_6"", ""pri_3"", ""na""), B05_memb_age = c(52, 14, 10, 3), B02_memb_gender = c(""male"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""widow/er"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA), + B_memb_no = 1:4, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA))",province1,8,yes,village1,grass,708,33.48340465,no,12,no,no,"Ponto geográfico + +Latitude: 0513321 +Longetude: 7907156 +Altitude: 740m","NA",yes,na,"NA",-19.11216693,list(),"NA",no,4 +2,no,ward2,yes,yes,25,3,"list(F11_no_owned = c(1, 2, 2, 15), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""poultry""))","NA",uuid:1feb0108-4599-4bf9-8a07-1f5e66a50a0a,no,"NA","NA",no,3,"NA",burntbricks,2,list(),"c(""Aug"", ""Sept"")","Compra de produtos alimentícios +Compra de vestuários +Pagamento de despesas escolares",2,yes,no,2017-04-09T22:40:57.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""maize"", ""maize""), E09_irr_manager = list(NULL, ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""inherited"", ""inherited""), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, +""canal"", ""canal""), E06_plot_no = 1:3)",2016-11-16,no,2017-04-09T22:21:23.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize"", ""maize""), D01_curr_plot = 1:3, D02_total_plot = c(8, 14, 0.2), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Feb"", D08_land_planted = 8, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = 5, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list( + D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", + D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", NA), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 0.2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 0.2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Construiu uma casa"", ""Comprou cabeças de gado bovino"", ""Pagou despesas escolares dos filhos""), F03_year = c(2013, 2002, 2014), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",4,"c(""oxen"", ""cows"", ""goats"", ""poultry"")",8,no,more_once,"c(""cow_cart"", ""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",more_half,no,none,20,yes,NA,NULL,NA,70,"list(B06_memb_education = c(""pri_2"", ""pri_4"", ""sec_1"", ""pri_5"", ""pri_3"", ""sec_1"", ""sec_3"", ""na""), B05_memb_age = c(42, 35, 17, 12, 9, 14, 19, 5), B02_memb_gender = c(""male"", ""male"", ""male"", ""female"", ""female"", ""male"", ""female"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, +NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA))",province1,8,yes,village1,mabatipitched,707,33.48341471,no,20,no,yes,"Ponto geográfico + +Latitude: 0513536 +Longetude: 7908272 +Altitude: 752m","NA",yes,na,"NA",-19.11217415,list(),"NA",no,8 +1,yes,ward2,yes,yes,14,2,"list(F11_no_owned = c(1, 5, 3), F_curr_liv = c(""oxen"", ""goats"", ""poultry""))","NA",uuid:761f9c49-ec93-4932-ba4c-cc7b78dfcef1,yes,"NA","NA",no,2,"NA",burntbricks,1,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra produtos alimentícios +Compra mobiliário +Compra animais",2,yes,no,2017-04-09T15:19:22.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""purchased""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""canal""), E06_plot_no = 1:2)",2016-11-18,no,2017-04-09T15:00:19.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(4, 4), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 700, D12_harvst_amount = 6, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 2, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 50, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 80, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 700, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 700, + D12_harvst_amount = 80, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou cabeças de gado caprino"", ""Comprou cabeças de gado bovino""), F03_year = c(2013, 2015), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""goats"", ""poultry"")",6,no,more_once,"c(""radio"", ""cow_plough"", ""mobile_phone"")",more_half,yes,"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")",12,yes,NA,NULL,no,71,"list(B06_memb_education = c(""pri_6"", ""pri_5"", ""pri_1"", ""na"", ""na"", ""na""), B05_memb_age = c(24, 21, 8, 6, 4, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", + ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,4,yes,village3,grass,696,33.48332601,yes,1,no,no,"Ponto geográfico + +Latitude: 0512715 +Longetude: 7905421 +Altitude: 702.4m","NA",yes,"c(""rely_less_food"", ""limit_variety"", ""limit_portion"", ""reduce_meals"", ""restrict_adults"", ""borrow_food"", ""lab_ex_food"")","NA",-19.11220603,list(),"NA",no,6 +8,no,ward2,no,no,18,NA,"list(F11_no_owned = 5, F_curr_liv = ""pigs"")","NA",uuid:f6d04b41-b539-4e00-868a-0f62b427587d,no,"NA","NA",no,1,"NA",burntbricks,3,list(),NULL,NA,2,NA,NA,2017-04-09T05:27:41.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-16,no,2017-04-09T05:16:06.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 1, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 300, D12_harvst_amount = 10, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = c(""Compra vestuários"", ""Construiu uma casa""), F03_year = c(2016, 2010), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",1,pigs,4,no,NA,mobile_phone,NA,no,"c(""Aug"", ""Sept"", ""Oct"")",10,no,1,NULL,NA,127,"list(B06_memb_education = c(""pri_7"", ""pri_7"", ""na"", ""na""), B05_memb_age = c(28, 21, 2, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, +NA, NA, NA), B_memb_no = 1:4, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA))",province1,8,NA,village1,grass,676,33.48341359,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 9512764 +Longetude: 7907961 +Altitude: 728m","NA",yes,"c(""borrow_food"", ""lab_ex_food"")","NA",-19.11221396,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,4 +2,no,ward2,yes,no,25,1,"list(F11_no_owned = c(10, 26, 2, 3, 5), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""sheep"", ""poultry""))","NA",uuid:429d279a-a519-4dcc-9f64-4673b0fd5d53,no,"NA","NA",yes,1,"NA",burntbricks,1,"list(B13_remitter_location_village = ""Maputo"", B15_remitter_location_region_other = NA, B15_remitter_location_region = ""maputo"", B14_remitter_location_district = ""Maputo"", B12_remittance_money_type = ""Negociante"")",Nov,"Compra de produtos alimentícios, utensílios domésticos e pagamento de despesas escolares dos filhos",3,yes,no,2017-04-09T05:43:51.000Z,no,no,1,NULL,district1,earth,"list(E12_apply_water = ""furrows"", E08_crops = list(c(""maize"", ""vegetable"", ""peanut"")), E09_irr_manager = list(""other_non_rel""), E09_irr_manager_other = NA, E14_access_other = NA, E08_crops_other = NA, E13_plot_loc = ""near"", E16_amount_pay = NA, E15_duration = NA, E07_bring = ""yes"", E14_access = ""purchased"", E11_water_fields = ""canal_gravity"", E10_water_source = ""canal"", E06_plot_no = 1)",2016-11-23,yes,2017-04-09T05:27:46.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""vegetable"", ""peanut"")), D01_curr_plot = 1, D02_total_plot = 8, D03_unit_land = ""hactare"", D_crops_count = ""3"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 2800, D12_harvst_amount = 30, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""kg"", + D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""other_non_rel""), D10_who_own = ""du"", D06_mnth_harvest = ""Jan"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 150, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 150, + D17_cost_seed = 160, D12_harvst_amount = 4, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 250)), D_curr_crop = c(""maize"", ""vegetable"", ""peanut""), D_repeat_times_count = c(""1"", ""1"", ""1""), D05_times = c(1, 1, 1))), D03_unit_land_other = NA)","list(F01_item = c(""Compra de mobiliário da casa"", ""Compra de utensílios domésticos""), F03_year = 2015:2016, F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",5,"c(""oxen"", ""cows"", ""goats"", ""sheep"", ""poultry"")",5,no,never,"c(""cow_cart"", ""car"", ""lorry"", ""motorcyle"", ""bicycle"", ""television"", ""sterio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""electricity"", ""table"", ""sofa_set"", ""mobile_phone"", ""fridge"")",abt_half,no,"c(""Jan"", ""Oct"", ""Nov"")",2,yes,NA,NULL,NA,133,"list(B06_memb_education = c(""pri_7"", ""sec_5"", ""pri_2"", ""na"", ""na""), B05_memb_age = c(25, 43, 7, 3, 1), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Occasional"", ""Occasional"", ""Occasional"", ""Occasional"", ""Occasional""), B09_interviewee_main_activities = list(""small_business"", ""salar_job"", ""na"", ""na"", + ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""small_scale_farm"", ""small_business""), ""salar_job"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,2099.999,yes,village3,mabatisloping,0,33.4777622,no,2,no,yes,"Ponto geográfico + +Latitude: 0512450 +Longetude: 7910525 +Altitude: 719m","NA",no,na,"NA",-19.1041288,list(),"NA",no,5 +1,yes,ward2,yes,no,16,2,"list(F11_no_owned = c(2, 8, 4), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:59738c17-1cda-49ee-a563-acd76f6bc487,no,"NA","NA",yes,2,"NA",burntbricks,3,list(),"c(""Sept"", ""Oct"", ""Nov"")",Compra produtos alimentícios e produtos de higiene e produtos para a sua barraca.,3,yes,no,2017-04-09T06:16:11.000Z,no,no,2,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""tomatoes"", ""vegetable"", ""green_beans"")), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""allocated_cus_aut""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""canal""), E06_plot_no = 1:2)",2016-11-24,no,2017-04-09T05:47:31.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""sorghum""), c(""beans"", ""tomatoes"", ""vegetable"")), D01_curr_plot = 1:2, D02_total_plot = c(12, 2), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""2"", ""3""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 6, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 24, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", + D06_mnth_harvest = ""July"", D08_land_planted = 6, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 11, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""sorghum""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 33, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 30, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 100, D12_harvst_amount = 30, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 970), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", + D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 100, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 25, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 25, D16_imprv_seed = ""no"", D23_where_sold = list( + ""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 970), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 7, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 350, D12_harvst_amount = 7, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 800)), D_curr_crop = c(""beans"", ""tomatoes"", ""vegetable""), D_repeat_times_count = c(""1"", ""1"", ""1""), D05_times = c(1, +1, 1))), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou Bicicleta"", ""Comprou cabeças de gado caprino"", ""Comprou cabeças de gado bovino"", ""Comprou tracção animal"", ""Comprou motorizada""), F03_year = c(2008, 2006, 2009, 2005, 2011), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente de venda de carvão vegetal"", ""Renda proveniente da venda de gado bovino""))",3,"c(""oxen"", ""cows"", ""goats"")",10,yes,once,"c(""motorcyle"", ""bicycle"", ""radio"", ""sterio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",abt_half,yes,none,15,no,NA,NULL,no,152,"list(B06_memb_education = c(""pri_7"", ""none"", ""none"", ""sec_2"", ""sec_1"", ""pri_5"", ""pri_5"", ""pri_2"", ""pri_2"", ""na""), B05_memb_age = c(44, 44, 62, 18, 16, 12, 11, 9, 9, 5), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""male"", ""female"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""widow/er"", ""single"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""parent"", ""Child"", ""Child"", ""Child"", ""Child"", +""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""other"", c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(""Da banho animal"", NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list( + c(""small_scale_farm"", ""other""), c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(""Da banho os animais em Ruaca"", NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,11,yes,village3,grass,702,33.48344669,yes,16,no,no,"Ponto geográfico + +Latitude: 0512597 +Longetude: 7909952 +Altitude: 717.7m","NA",yes,na,"NA",-19.1121034,list(),"NA",no,10 +1,yes,ward2,no,yes,41,NA,"list(F11_no_owned = 5, F_curr_liv = ""goats"")","NA",uuid:7e7961ca-fa1c-4567-9bfa-a02f876e4e03,yes,"NA","NA",yes,1,"NA",burntbricks,1,list(),NULL,NA,2,NA,NA,2017-04-09T06:28:48.000Z,no,NA,1,NULL,district1,earth,list(),2016-11-24,no,2017-04-09T06:16:49.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 1, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 25, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)",list(),1,goats,5,no,NA,NULL,NA,yes,"c(""Oct"", ""Nov"")",41,yes,1,NULL,NA,153,"list(B06_memb_education = c(""none"", ""none"", ""none"", ""pri_1"", ""pri_3""), B05_memb_age = c(65, 44, 41, 10, 18), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""married"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Spouse"", ""Grandchild"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm"" +), c(""housework"", ""small_scale_farm""), ""na"", ""small_scale_farm""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""na"", ""small_scale_farm""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,12,NA,village3,grass,691,33.48345393,NA,"NA",NA,no,"Esta família para suprir as suas despesas tem feito ganho-ganho nas machambas dos vizinhos. + +Ponto geográfico +Latitude: 0512642 +Longetude: 7910166 +Altitude: 725.5m","NA",no,"c(""rely_less_food"", ""limit_variety"", ""limit_portion"", ""reduce_meals"", ""no_food"", ""day_night_hungry"")","NA",-19.11223572,"list(E04_res_water_field = ""no_need"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,5 +1,no,ward2,no,no,4,NA,list(),"NA",uuid:77b3021b-a9d6-4276-aaeb-5bfcfd413852,no,"NA","NA",yes,2,"NA",burntbricks,2,list(),NULL,NA,2,NA,NA,2017-04-09T06:48:01.000Z,no,NA,2,NULL,district1,earth,list(),2016-11-24,no,2017-04-09T06:35:16.000Z,"list(D04_crops_harvsted = list(""maize"", ""other""), D01_curr_plot = 1:2, D02_total_plot = c(2, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, ""Ananás""), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 1, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""other"", D19_pesticide_other = NA, D25_price = 15, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 500, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 500, + D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = ""Unidades"", D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""other"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou terra para construção de habitação"", ""Construiu sua morada""), F03_year = c(2015, 2015), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",1,none,4,no,NA,electricity,NA,no,"c(""Jan"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")",5,no,2,NULL,NA,155,"list(B06_memb_education = c(""pri_5"", ""none"", ""pri_1"", ""pri_1""), B05_memb_age = c(36, 25, 9, 6), B02_memb_gender = c(""male"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA), + B_memb_no = 1:4, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA))",province1,13,NA,village2,grass,713,33.48342364,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 0511036 +Longetude: 7908797 +Altitude: 632.9m","NA",no,"c(""limit_variety"", ""reduce_meals"", ""borrow_food"", ""go_forest"", ""lab_ex_food"")","NA",-19.11220708,"list(E04_res_water_field = c(""land_far"", ""land_far""), E03_crops = list(""maize"", ""maize""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""yes_no_land_chied"", ""yes_no_land_chied""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",yes,4 +2,yes,ward2,yes,yes,79,3,"list(F11_no_owned = c(1, 1, 3), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:2186e2ec-f65a-47cc-9bc1-a0f36dd9591c,no,"NA","NA",no,3,"NA",burntbricks,1,list(),"c(""Oct"", ""Nov"")","Faz despesas da casa, tais como compra de produtos alimentícios e de higiene.",3,yes,no,2017-04-09T07:14:16.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows"", NA), E08_crops = list(NULL, c(""beans"", ""vegetable""), NULL), E09_irr_manager = list(NULL, c(""du_head"", ""spouse""), NULL), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""far"", NA), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""no""), E14_access = c(NA, ""inherited"", NA), E11_water_fields = c(NA, ""canal_gravity"", NA), E10_water_source = c(NA, +""canal"", NA), E06_plot_no = 1:3)",2016-11-25,no,2017-04-09T06:54:49.000Z,"list(D04_crops_harvsted = list(""maize"", c(""beans"", ""vegetable""), ""maize""), D01_curr_plot = c(3, 2, 3), D02_total_plot = c(4, 1, 2), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""2"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 924, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = 14, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 19, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), + D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = 25, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 10, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", + D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 466, D12_harvst_amount = 1, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""beans"", +""vegetable""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Construiu a sua moradia, comprou cabeças de gado caprino"", ""Comprou tracção animal""), F03_year = c(2015, 2000), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",5,no,frequently,"c(""radio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",abt_half,yes,none,20,yes,NA,NULL,yes,178,"list(B06_memb_education = c(""pri_2"", ""pri_2"", ""pri_5"", ""pri_4"", ""pri_5""), B05_memb_age = c(79, 35, 15, 10, 14), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na""), + B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,50,yes,village3,mabatisloping,714,33.48355586,yes,20,no,yes,"Ponto geográfico + +Latitude: 0514617 +Longetude: 7911305 +Altitude: 735.0m","NA",yes,na,"NA",-19.1123581,list(),"NA",yes,5 +1,no,ward2,yes,no,13,2,"list(F11_no_owned = c(1, 1), F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:87998c33-c8d2-49ec-9dae-c123735957ec,no,"NA","NA",yes,2,"NA",sunbricks,2,list(),"c(""Oct"", ""Nov"")","Compra produtos alimentícios +Compra produtos de higiene",3,yes,no,2017-04-09T08:22:34.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""tomatoes"", ""onion"", ""vegetable"")), E09_irr_manager = list(NULL, ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""far""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""allocated_cus_aut""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""canal""), E06_plot_no = 1:2)",2016-11-25,no,2017-04-09T07:59:49.000Z,"list(D04_crops_harvsted = list(c(""tomatoes"", ""onion"", ""vegetable""), ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(2.5, 4.8), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""3"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Sept"", D08_land_planted = 1.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 500, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", + D24_amnt_sold = 17, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 525, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 400, D12_harvst_amount = 17, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(c(""paid_fertilizer"", ""own_manure"")), D14_cost_fert = 800), + list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 450, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 16, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 525, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1680, D12_harvst_amount = 16, + D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(c(""paid_fertilizer"", ""own_manure"")), D14_cost_fert = 1600), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Oct"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 300, D12_harvst_amount = 1, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(c(""paid_fertilizer"", ""own_manure"")), D14_cost_fert = 1600)), D_curr_crop = c(""tomatoes"", ""onion"", ""vegetable""), D_repeat_times_count = c(""1"", +""1"", ""1""), D05_times = c(1, 1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 4.8, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou planta"", ""Comprou cabeças de gado bovino"", ""Comprou motorizada""), F03_year = c(2006, 2015, 2013), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""cows"")",10,no,more_once,"c(""motorcyle"", ""television"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",more_half,no,Nov,11,no,NA,NULL,NA,177,"list(B06_memb_education = c(""pri_1"", ""pri_1"", ""pri_7"", ""pri_6"", ""sec_1"", ""pri_4"", ""pri_3"", ""na"", ""na"", ""na""), B05_memb_age = c(47, 40, 22, 16, 14, 11, 10, 6, 3, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female"", ""male"", ""male"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""other"", ""Child"", ""Child"", ""Child"", +""Child"", ""Child"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), ""comm_farming"", ""comm_farming"", c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list(c(""small_scale_farm"", +""comm_farming""), c(""housework"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, ""Nora"", NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,9,no,village2,grass,713,33.48349493,no,11,no,no,"Ponto geográfico + +Latitude: 0513690 +Longetude: 790812 +Altitude: 755m","NA",yes,na,"NA",-19.1120537,list(),"NA",yes,10 +1,yes,ward2,yes,yes,50,2,"list(F11_no_owned = 3:5, F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:ece89122-ea99-4378-b67e-a170127ec4e6,yes,"NA","NA",yes,2,"NA",muddaub,1,list(),"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")",Gasta com as despesas diarias da casa,3,yes,no,2017-04-09T08:42:02.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""tomatoes"", ""vegetable"")), E09_irr_manager = list(NULL, ""child""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""canal""), E06_plot_no = 1:2)",2016-11-25,no,2017-04-09T08:23:05.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""sorghum""), ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(6, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""2"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 6, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 6, + D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", + D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""sorghum""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = list(""child""), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 0.3, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 450, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 45, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 500, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 45, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino e caprino"", ""Comprou aves""), F03_year = c(2002, 2009), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",7,no,never,"c(""cow_plough"", ""solar_panel"")",abt_half,yes,"c(""Oct"", ""Nov"")",4,yes,NA,NULL,NA,180,"list(B06_memb_education = c(""pri_7"", ""pri_5"", ""pri_5"", ""pri_7"", ""pri_6"", ""pri_4"", ""pri_2""), B05_memb_age = c(20, 50, 44, 18, 16, 12, 10), B02_memb_gender = c(""male"", ""male"", ""female"", ""male"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""single"", ""married"", ""married"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Child"", ""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Occasional"", ""Occasional"", ""Always"", ""Always"", ""Always"", +""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""comm_farming"", ""small_business""), c(""housework"", ""comm_farming""), ""comm_farming"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""small_scale_farm"", c(""small_scale_farm"", ""small_business""), c(""housework"", ""small_scale_farm""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, +NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,4,yes,village3,grass,701,33.48346659,no,4,no,yes,"Ponto geográfico +Latitude: 0515370 +Longetude: 7911583 +Altitude: 790","NA",no,"c(""rely_less_food"", ""reduce_meals"", ""lab_ex_food"")","NA",-19.11204921,list(),"NA",no,7 +2,yes,ward2,yes,no,25,1,"list(F11_no_owned = c(3, 3, 6), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:bf373763-dca5-4906-901b-d1bacb4f0286,no,"NA","NA",yes,1,"NA",sunbricks,4,list(),"c(""Sept"", ""Oct"")","Compra produtos alimentícios +Compra vestuários +Compra insumos agrícolas",3,yes,no,2017-04-09T09:07:48.000Z,yes,no,1,NULL,district1,earth,"list(E12_apply_water = ""furrows"", E08_crops = list(c(""maize"", ""tomatoes"", ""vegetable"")), E09_irr_manager = list(""du_head""), E09_irr_manager_other = NA, E14_access_other = NA, E08_crops_other = NA, E13_plot_loc = ""near"", E16_amount_pay = NA, E15_duration = NA, E07_bring = ""yes"", E14_access = ""inherited"", E11_water_fields = ""canal_gravity"", E10_water_source = ""canal"", E06_plot_no = 1)",2016-11-25,no,2017-04-09T08:43:08.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""tomatoes"", ""vegetable"")), D01_curr_plot = 1, D02_total_plot = 3, D03_unit_land = ""hactare"", D_crops_count = ""3"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Mar"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 5, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", + D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 20, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 1000, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1220, D12_harvst_amount = 20, D16_imprv_seed = ""yes"", D23_where_sold = list( + ""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1200), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 3, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 880, D12_harvst_amount = 5, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = c(""maize"", ""tomatoes"", ""vegetable""), D_repeat_times_count = c(""1"", ""1"", ""1""), D05_times = c(1, +1, 1))), D03_unit_land_other = NA)","list(F01_item = c(""Construiu uma casa"", ""Pagou despesas escolares dos filhos"", ""Comprou chapas de cobertura"", ""Compra de insumos agrícolas e terra para aumentar a produção""), F03_year = c(2015, 2012, 2013, 2010), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",11,no,more_once,"c(""cow_cart"", ""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",more_half,yes,none,20,no,NA,NULL,no,181,"list(B06_memb_education = c(""pri_1"", ""sec_5"", ""sec_3"", ""pri_5"", ""pri_4"", ""pri_1"", ""na"", ""na"", ""na"", ""sec_3"", ""pri_4""), B05_memb_age = c(39, 21, 14, 12, 9, 7, 4, 2, 1, 19, 60), B02_memb_gender = c(""female"", ""male"", ""male"", ""female"", ""female"", ""male"", ""female"", ""female"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""unmarried"", ""married""), B03_relationship_du = c(""Spouse"", ""Child"", ""Child"", ""Child"", +""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""other"", ""head""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", c(""comm_business"", ""na""), ""na"", ""na"", ""na"", ""na"", ""small_scale_farm"", ""comm_farming""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:11, B08_interviewee_activities = list( + ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""small_scale_farm"", ""comm_farming""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, ""Nora"", NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,5,yes,village2,mabatipitched,701,33.48351086,yes,23,no,yes,"Ponto geográfico + +Latitude: 0514863 +Longetude: 7907129 +Altitude: 877m","NA",yes,na,"NA",-19.11207501,list(),"NA",no,11 +3,no,ward2,yes,no,21,1,"list(F11_no_owned = 1:2, F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:394033e8-a6e2-4e39-bfac-458753a1ed78,no,"NA","NA",yes,1,"NA",muddaub,2,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra vestuários para a família +Compra produtos alimentícios +Compra insumos agrícolas",3,yes,no,2017-04-09T09:34:12.000Z,no,no,1,NULL,district1,earth,"list(E12_apply_water = ""furrows"", E08_crops = list(c(""maize"", ""beans"", ""pumpkins"", ""bananas"", ""tomatoes"", ""vegetable"")), E09_irr_manager = list(""du_head""), E09_irr_manager_other = NA, E14_access_other = NA, E08_crops_other = NA, E13_plot_loc = ""near"", E16_amount_pay = NA, E15_duration = NA, E07_bring = ""yes"", E14_access = ""allocated_cus_aut"", E11_water_fields = ""canal_gravity"", E10_water_source = ""canal"", E06_plot_no = 1)",2016-11-25,no,2017-04-09T09:08:04.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""beans"", ""bananas"", ""tomatoes"", ""vegetable"")), D01_curr_plot = 1, D02_total_plot = 5, D03_unit_land = ""hactare"", D_crops_count = ""5"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 7, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Feb"", D08_land_planted = 0.5, + D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 300, D12_harvst_amount = 2, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1200), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1.5, D11_harvst_unit = ""other"", D19_pesticide_other = NA, D25_price = 75, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 25, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", + D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 25, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = ""Unidades"", D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 250, D19_pesticide = ""own_choice"", + D07_ploughing_typ = ""ox"", D24_amnt_sold = 8, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 8, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600), + list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 920, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 450, D12_harvst_amount = 2, + D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = c(""maize"", ""beans"", ""bananas"", ""tomatoes"", ""vegetable""), D_repeat_times_count = c(""1"", ""1"", ""1"", ""1"", ""1""), D05_times = c(1, 1, 1, 1, 1))), D03_unit_land_other = NA)","list(F01_item = c(""Comprou chapas de zinco para cobertura da sua casa"", ""Comprou cabeças de gado bovino para lobolo"", ""Comprou uma machamba""), F03_year = c(2015, 2015, 2013), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""cows"")",7,no,more_once,solar_panel,more_half,no,"c(""Jan"", ""Feb"", ""Nov"", ""Dec"")",20,no,NA,NULL,NA,182,"list(B06_memb_education = c(""pri_2"", ""none"", ""sec_3"", ""pri_7"", ""pri_3"", ""none"", ""pri_2""), B05_memb_age = c(74, 58, 21, 15, 9, 13, 8), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""female"", ""male"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Holidays"", ""Always"", ""Always"", +""Always"", ""Always""), B09_interviewee_main_activities = list(""comm_farming"", ""comm_farming"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""comm_farming"", c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""na"", ""other""), ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, ""Estudante"", NA, NA, NA, NA))",province1,4,yes,village2,mabatipitched,694,33.48345447,no,20,no,yes,"Ponto geográfico + +Latitude: 0514625 +Longetude: 7907812 +Altitude: 897m","NA",no,na,"NA",-19.11204151,list(),"NA",no,7 +1,yes,ward1,yes,no,24,1,"list(F11_no_owned = 1:2, F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:268bfd97-991c-473f-bd51-bc80676c65c6,no,"NA","NA",no,1,"NA",muddaub,1,list(),"c(""Sept"", ""Oct"")",Faz despesas da casa,3,yes,no,2017-04-09T15:46:14.000Z,no,no,1,NULL,district1,earth,"list(E12_apply_water = ""furrows"", E08_crops = list(c(""maize"", ""beans"", ""tomatoes"", ""vegetable"")), E09_irr_manager = list(c(""du_head"", ""spouse"", ""child"", ""parent"")), E09_irr_manager_other = NA, E14_access_other = NA, E08_crops_other = NA, E13_plot_loc = ""near"", E16_amount_pay = NA, E15_duration = NA, E07_bring = ""yes"", E14_access = ""inherited"", E11_water_fields = ""canal_gravity"", E10_water_source = ""canal"", E06_plot_no = 1)",2016-11-28,no,2017-04-09T15:20:26.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""beans"", ""tomatoes"", ""vegetable"")), D01_curr_plot = 1, D02_total_plot = 2, D03_unit_land = ""hactare"", D_crops_count = ""4"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Mar"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 30, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(c(""du_head"", ""parent"")), D10_who_own = ""du"", D06_mnth_harvest = ""Feb"", D08_land_planted = 0.2, + D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1400, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 3, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 3, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500), list(D26_who_sell_harv = list(c(""du_head"", ""parent"")), D10_who_own = ""du"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 150, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, + D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 150, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500), list(D26_who_sell_harv = list(c(""du_head"", ""parent"")), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 0.2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, + D25_price = 1000, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 10, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 880, D12_harvst_amount = 10, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""paid_fertilizer""), D14_cost_fert = 1500)), D_curr_crop = c(""maize"", ""beans"", ""tomatoes"", ""vegetable""), D_repeat_times_count = c(""1"", ""1"", ""1"", ""1""), D05_times = c(1, 1, 1, 1))), D03_unit_land_other = NA)","list(F01_item = c(""Construiu uma casa"", ""Comprou cabeças de gado bovino bovino""), F03_year = c(2013, 2003), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""cows"")",7,no,more_once,"c(""cow_plough"", ""mobile_phone"")",more_half,yes,none,24,no,NA,NULL,NA,186,"list(B06_memb_education = c(""pri_2"", ""pri_2"", ""pri_3"", ""sec_2"", ""na"", ""na"", ""na""), B05_memb_age = c(60, 80, 20, 19, 4, 15, 3), B02_memb_gender = c(""female"", ""female"", ""male"", ""male"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""widow/er"", ""widow/er"", ""unmarried"", ""single"", ""single"", ""single"", ""unmarried""), B03_relationship_du = c(""head"", ""parent"", ""other"", ""Child"", ""other"", ""other"", ""other""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), + B09_interviewee_main_activities = list(""small_scale_farm"", ""na"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""small_scale_farm"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), ""na"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""small_scale_farm"", ""na""), B03_relationship_du_other = c(NA, NA, ""Irmão"", NA, ""Sobrinho"", ""Sobrinho"", ""Sobrinho""), B08_interviewee_activities_other = c(NA, + NA, NA, NA, NA, NA, NA))",province1,10,yes,village2,grass,690,33.48346266,no,21,no,no,"Ponto geográfico +Latitude: 0514053 +Longetude: 7907939 +Altitude: 786","NA",no,na,"NA",-19.11232028,list(),"NA",no,7 +2,no,ward2,yes,no,43,2,"list(F11_no_owned = c(3, 5, 3, 6), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""poultry""))","NA",uuid:0a42c9ee-a840-4dda-8123-15c1bede5dfc,yes,"NA","NA",yes,2,"NA",muddaub,3,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra vestuários +Compra insumos agrícolas +Paga despesas escolares para os filhos",3,yes,no,2017-04-09T16:12:46.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""beans"", ""tomatoes"", ""vegetable"")), E09_irr_manager = list(NULL, ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""canal""), E06_plot_no = 1:2)",2016-11-28,no,2017-04-09T15:48:14.000Z,"list(D04_crops_harvsted = list(c(""beans"", ""tomatoes"", ""vegetable""), ""maize""), D01_curr_plot = c(1, 1), D02_total_plot = c(3, 2), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""3"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Feb"", D08_land_planted = 0.2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1400, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", + D24_amnt_sold = 6, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 920, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 7, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1200), list(D26_who_sell_harv = list( + ""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 400, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 200, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 200, D16_imprv_seed = ""no"", + D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1200), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Jan"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 8, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 8, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = c(""beans"", ""tomatoes"", ""vegetable""), D_repeat_times_count = c(""1"", ""1"", ""1""), D05_times = c(1, +1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Mar"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 35, + D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Compra de materiais de construção"", ""Comprou painel solar"", ""Comprou bicicleta""), F03_year = c(2014, 2015, 2014), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",4,"c(""oxen"", ""cows"", ""goats"", ""poultry"")",5,no,more_once,"c(""cow_cart"", ""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""mobile_phone"")",more_half,yes,none,1,no,NA,NULL,no,187,"list(B06_memb_education = c(""pri_4"", ""pri_6"", ""sec_5"", ""sec_1"", ""pri_3""), B05_memb_age = c(43, 60, 24, 18, 10), B02_memb_gender = c(""female"", ""male"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""other"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Occasional"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""comm_farming"", ""comm_farming"", ""na"", ""na"", ""na""), + B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm"", ""comm_farming""), ""comm_farming"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, ""Esposo"", NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,13,yes,village2,grass,691,33.48349248,yes,24,no,yes,"Ponto geográfico + +Latitude: 0514559 +Longetude: 7907153 +Altitude: 874m","NA",yes,na,"NA",-19.1122345,list(),"NA",no,5 +1,no,ward2,yes,yes,48,3,"list(F11_no_owned = c(2, 3, 13), F_curr_liv = c(""oxen"", ""cows"", ""poultry""))","NA",uuid:2c132929-9c8f-450a-81ff-367360ce2c19,no,"NA","NA",no,3,"NA",burntbricks,3,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra de produtos alimentícios +Pagamento de despesas escolares e de casa",2,yes,no,2017-04-09T16:35:24.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""tomatoes"", ""beans""), E09_irr_manager = list(NULL, ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""far"", ""far""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""purchased"", ""purchased""), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, +""canal"", ""canal""), E06_plot_no = 1:3)",2016-11-28,no,2017-04-09T16:13:19.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""beans""), D01_curr_plot = 1:3, D02_total_plot = c(2, 0.5, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 900, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = 7, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 480, D12_harvst_amount = 17, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), + D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 0.5, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 80, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 120, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, + D18_cost_pestcd = 1200, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 170, D12_harvst_amount = 120, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", + D06_mnth_harvest = ""Mar"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 9, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), + D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou tracção animal"", ""Comprou painel solar \nComprou bicicleta"", ""Construiu uma casa para si""), F03_year = c(2015, 2015, 2016), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""poultry"")",5,no,never,"c(""cow_cart"", ""bicycle"", ""radio"", ""cow_plough"", ""solar_torch"")",more_half,yes,"c(""Sept"", ""Oct"", ""Nov"")",7,no,NA,NULL,NA,195,"list(B06_memb_education = c(""pri_5"", ""pri_7"", ""sec_1"", ""pri_6"", ""pri_5""), B05_memb_age = c(30, 48, 18, 15, 13), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""unmarried"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""Spouse"", ""other"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", + ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, ""Sobrinho"", NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,9,yes,village2,grass,706,33.48342104,no,5,no,no,"Ponto geográfico + +Latitude: 0514331 +Longetude: 7907286 +Altitude: 832m","NA",yes,lab_ex_food,"NA",-19.11220559,list(),"NA",yes,5 +2,yes,ward2,yes,yes,49,2,"list(F11_no_owned = c(2, 4, 2), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:44e427d1-a448-4bf2-b529-7d67b2266c06,yes,"NA","NA",yes,2,"NA",burntbricks,2,list(),"c(""Oct"", ""Nov"")","Compra de produtos da primeira necessidade +Compra de produtos de higiene +Pagamento de despesas escolares dos filhos",3,yes,no,2017-04-09T18:31:40.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""tomatoes"", ""vegetable"")), E09_irr_manager = list(NULL, c(""du_head"", ""child"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""far""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""canal""), E06_plot_no = 1:2)",2016-11-28,no,2017-04-09T18:00:41.000Z,"list(D04_crops_harvsted = list(""maize"", c(""tomatoes"", ""vegetable"")), D01_curr_plot = 1:2, D02_total_plot = c(6, 1.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""2""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 0.3, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 700, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 11, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 11, + D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 410), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Oct"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 3, D10_who_own_other = NA, D_use_pest = ""yes"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 3, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 410)), D_curr_crop = c(""tomatoes"", ""vegetable""), D_repeat_times_count = c(""1"", ""1"" +), D05_times = c(1, 1))), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Comprou tracção animal"", ""Construiu uma casa""), F03_year = c(2005, 2006, 2013), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",7,no,more_once,"c(""radio"", ""cow_plough"", ""mobile_phone"")",more_half,yes,none,21,no,NA,NULL,no,196,"list(B06_memb_education = c(""pri_7"", ""sec_1"", ""pri_2"", ""pri_5"", ""pri_4"", ""pri_7"", ""pri_7""), B05_memb_age = c(49, 16, 21, 15, 14, 13, 12), B02_memb_gender = c(""female"", ""female"", ""male"", ""female"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""widow/er"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Holidays"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"" +), B09_interviewee_main_activities = list(c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,10,yes,village2,mabatisloping,694,33.48340018,yes,21,no,no,"Ponto geográfico +Latitude: 0513866 +Longetude: 7908696 +Altitude: 733m","NA",yes,na,"NA",-19.11220357,list(),"NA",no,7 +2,no,ward2,yes,yes,19,2,"list(F11_no_owned = c(4, 9, 2), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:85c99fd2-775f-40c9-8654-68223f59d091,no,"NA","NA",yes,2,"NA",burntbricks,1,"list(B13_remitter_location_village = ""Macate"", B15_remitter_location_region_other = NA, B15_remitter_location_region = ""manica"", B14_remitter_location_district = ""Manica"", B12_remittance_money_type = ""Pedreiro"")","c(""Aug"", ""Sept"", ""Oct"", ""Nov"")","Paga despesas de casa +Compra produtos para a sua barraca",2,yes,no,2017-04-09T19:14:52.000Z,yes,no,2,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""beans"", ""tomatoes"", ""vegetable"")), E09_irr_manager = list(NULL, c(""du_head"", ""child"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""far""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""canal""), E06_plot_no = 1:2)",2016-11-28,yes,2017-04-09T18:32:09.000Z,"list(D04_crops_harvsted = list(""maize"", c(""beans"", ""tomatoes"", ""vegetable"")), D01_curr_plot = c(1, NA), D02_total_plot = c(6.5, 3), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""3""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = c(NA, NA), D10_who_own = c(""du"", ""du""), D06_mnth_harvest = c(""Aug"", ""May""), D08_land_planted = c(4, 1), D11_harvst_unit = c(""tins"", ""tins""), D19_pesticide_other = c(NA, NA), D25_price = c(NA, NA +), D19_pesticide = c(NA, NA), D07_ploughing_typ = c(""ox"", ""ox""), D24_amnt_sold = c(NA, NA), D10_who_own_other = c(NA, NA), D_use_pest = c(""no"", ""no""), D26_who_sell_harv_other = c(NA, NA), D15_cost_manu = c(NA, NA), D07_ploughing_typ_other = c(NA, NA), D18_cost_pestcd = c(NA, NA), D22_sell = c(""no"", ""no""), D20_paid_labour = c(""no"", ""no""), D21_cost_labour = c(NA, NA), D17_cost_seed = c(NA, NA), D12_harvst_amount = c(5, 1), D16_imprv_seed = c(""no"", ""no""), D23_where_sold = c(NA, NA), D11_harvst_unit_other = c(NA, +NA), D09_land_ownshp_other = c(NA, NA), D09_land_ownshp = c(""owned"", ""owned""), D13_fertilizer = list(""none"", ""none""), D14_cost_fert = c(NA, NA))), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""du"", D06_mnth_harvest = ""Feb"", D08_land_planted = 0.5, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 54, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 5, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 1000, D17_cost_seed = 250, D12_harvst_amount = 15, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500), list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), + D10_who_own = ""du"", D06_mnth_harvest = ""Feb"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 200, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 27, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 27, D16_imprv_seed = ""yes"", + D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Jan"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 300, D12_harvst_amount = 2, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500)), D_curr_crop = c(""beans"", ""tomatoes"", ""vegetable""), D_repeat_times_count = c(""1"", ""1"", ""1""), D05_times = c(1, +1, 1))), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Construiu uma barraca\nComprou tracção animal"", ""Construiu uma casa para a família"", ""Comprou cabeças de gado caprino""), F03_year = c(2016, 2015, 2008, 2016), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",5,yes,more_once,"c(""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_torch"", ""table"", ""mobile_phone"")",more_half,yes,Nov,11,no,NA,NULL,NA,197,"list(B06_memb_education = c(""pri_6"", ""pri_5"", ""na"", ""pri_3"", ""sec_1""), B05_memb_age = c(25, 22, 3, 8, 18), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""unmarried"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""other"", ""other""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), ""comm_farming"", ""na"", + ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, ""Prima"", ""Prima""), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,11,yes,village2,mabatisloping,714,33.4833828,no,11,no,no,"Ponto geográfico + +Latitude: 0513774 +Longetude: 7908629 +Altitude: 765m","NA",no,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"")","NA",-19.11218716,list(),"NA",yes,5 +1,no,ward2,yes,no,49,2,list(),"NA",uuid:28c64954-739c-444c-a6e0-355878e471c8,no,"NA","NA",yes,2,"NA",burntbricks,1,list(),"c(""Jan"", ""Dec"")",Paga despesas da casa,3,yes,no,2017-04-09T19:27:56.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, NA), E08_crops = c(NA, NA), E09_irr_manager = c(NA, NA), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, NA), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""no""), E14_access = c(NA, NA), E11_water_fields = c(NA, NA), E10_water_source = c(NA, NA), E06_plot_no = 1:2)",2016-11-28,no,2017-04-09T19:15:21.000Z,"list(D04_crops_harvsted = list(""maize"", ""other""), D01_curr_plot = 1:2, D02_total_plot = c(2, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, ""Madumbe""), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 1, D16_imprv_seed = ""no"", + D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""own_manure""), D14_cost_fert = NA)), D_curr_crop = ""other"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Construiu uma casa"", F03_year = 2015, F02_source_income = ""Renda proveniente da produção"")",1,none,3,no,never,NULL,less_half,no,Nov,11,no,NA,NULL,NA,198,"list(B06_memb_education = c(""none"", ""pri_4"", ""pri_1""), B05_memb_age = c(51, 63, 36), B02_memb_gender = c(""female"", ""male"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""other""), B07_residence_status = c(""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", c(""small_scale_farm"", ""artisan""), ""small_scale_farm""), B09_interviewee_main_activities_other = c(NA, NA, NA), B_memb_no = 1:3, B08_interviewee_activities = list( + c(""housework"", ""small_scale_farm""), c(""small_scale_farm"", ""artisan""), c(""housework"", ""small_scale_farm"")), B03_relationship_du_other = c(NA, NA, ""Empregado""), B08_interviewee_activities_other = c(NA, NA, NA))",province1,7,yes,village2,grass,716,33.48338774,no,11,no,no,"Ponto geográfico + +Latitude: 0513780 +Longetude: 7908261 +Altitude: 762m","NA",no,"c(""reduce_meals"", ""lab_ex_food"")","NA",-19.11212338,list(),"NA",yes,3 +2,yes,ward2,no,yes,6,NA,"list(F11_no_owned = c(4, 6), F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:9e79a31c-3ea5-44f0-80f9-a32db49422e3,yes,"NA","NA",yes,2,"NA",muddaub,1,list(),NULL,NA,2,NA,NA,2017-04-09T19:45:38.000Z,no,NA,2,NULL,district1,earth,list(),2016-11-21,no,2017-04-09T19:31:47.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(6, 2), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Feb"", D08_land_planted = 6, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 10, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 200, D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Feb"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""yes"", D21_cost_labour = 200, + D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou bicicleta"", ""Comprou aparelho sonora""), F03_year = c(2004, 2004), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",2,"c(""oxen"", ""cows"")",4,no,NA,"c(""bicycle"", ""radio"", ""solar_torch"", ""mobile_phone"")",NA,yes,"c(""Oct"", ""Nov"", ""Dec"")",6,yes,2,NULL,NA,201,"list(B06_memb_education = c(""pri_7"", ""pri_5"", ""na"", ""na""), B05_memb_age = c(24, 17, 4, 2), B02_memb_gender = c(""male"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA), + B_memb_no = 1:4, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA))",province1,10,NA,village2,grass,685,33.48338504,NA,"NA",NA,no,"Este questionário não tem cordenadas geográficas, porque usou se o tablet para tirar depois da entrevista e nao se registou.","NA",yes,"c(""borrow_food"", ""lab_ex_food"")","NA",-19.11217226,"list(E04_res_water_field = c(""land_far"", ""land_far""), E03_crops = list(""maize"", ""maize""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""no"", ""no""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",no,4 +4,no,ward2,yes,no,12,2,"list(F11_no_owned = c(4, 5, 3), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:06d39051-38ef-4757-b68b-3327b1f16b9d,no,"NA","NA",yes,2,"NA",burntbricks,2,list(),"c(""Aug"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")","Compra produtos alimentícios +Compra vestuários +Paga despesas escolares dos filhos",3,yes,no,2017-04-09T20:08:15.000Z,no,no,2,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""bananas"", ""tomatoes"")), E09_irr_manager = list(NULL, ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""middle""), E16_amount_pay = c(NA, 1000), E15_duration = c(NA, ""month""), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""rented""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""canal""), E06_plot_no = c(1, 1))",2016-11-17,no,2017-04-09T19:48:09.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = c(1, 3), D02_total_plot = c(3, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 2.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 18, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), + list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 200, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 120, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 600, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 120, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1450)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Construiu uma casa"", ""Comprou charua"", ""Comprou pulverizador""), F03_year = c(2002, 2008, 2008, 2009), F02_source_income = c(""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",12,no,more_once,"c(""cow_cart"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",more_half,no,"c(""Jan"", ""Feb"", ""Mar"", ""Oct"", ""Nov"", ""Dec"")",12,yes,NA,NULL,no,202,"list(B06_memb_education = c(""pri_2"", ""pri_1"", ""pri_2"", ""pri_7"", ""pri_2"", ""na"", ""na"", ""pri_4"", ""pri_7"", ""pri_5"", ""pri_5"", ""pri_5""), B05_memb_age = c(41, 38, 39, 14, 7, 5, 3, 12, 17, 15, 19, 19), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""male"", ""male"", ""male"", ""female"", ""female"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", +""Spouse"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:12, + B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,5,yes,village2,mabatisloping,705,33.48340466,yes,9,no,yes,Este questionário ja havia sido lançado no ODK e as cordenadas geográficas nao foram registadas no papel.,"NA",yes,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""restrict_adults"", ""lab_ex_food"")","NA",-19.11218863,list(),"NA",no,12 +1,yes,ward2,yes,yes,24,3,"list(F11_no_owned = c(2, 5, 4), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:c4a2c982-244e-45a5-aa4b-71fa53f99e18,yes,"NA","NA",yes,3,"NA",muddaub,2,list(),"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")",Compra de insumos agrícolas e produtos alimentares,2,yes,no,2017-04-26T16:13:33.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, NA, ""furrows""), E08_crops = list(NULL, NULL, ""tomatoes""), E09_irr_manager = list(NULL, NULL, ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, NA, ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""no"", ""yes""), E14_access = c(NA, NA, ""inherited""), E11_water_fields = c(NA, NA, ""canal_gravity""), E10_water_source = c(NA, NA, ""river""), E06_plot_no = 1:3)",2017-04-26,no,2017-04-26T15:46:24.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize"", ""tomatoes""), D01_curr_plot = 1:3, D02_total_plot = c(2, 3, 1.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""July"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 1, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, + D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 1.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 250, D19_pesticide = ""own_choice"", + D07_ploughing_typ = ""ox"", D24_amnt_sold = 117, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 800, D12_harvst_amount = 117, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), + D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Comprou cabeças de gado caprino""), F03_year = 2006:2007, F02_source_income = c(""Renda proveniente da agricultura irrigada"", ""Renda proveniente da agricultura irrigada""))",3,"c(""oxen"", ""cows"", ""goats"")",6,no,more_once,"c(""bicycle"", ""radio"", ""cow_plough"")",more_half,yes,"c(""Jan"", ""Aug"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")",24,yes,NA,NULL,yes,72,"list(B06_memb_education = c(""pri_1"", ""pri_5"", ""pri_3"", ""pri_4"", ""na"", ""na""), B05_memb_age = c(60, 52, 20, 11, 4, 2), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", +""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,5,yes,village3,grass,716,33.48347358,yes,4,no,no,"Ponto geográfico + +Latitude: 0512699 +Longetude: 7905380 +Altitude: 705.3m","NA",yes,"c(""rely_less_food"", ""limit_variety"", ""limit_portion"", ""reduce_meals"", ""lab_ex_food"")","NA",-19.11221489,list(),"NA",no,6 +2,no,ward2,yes,no,9,3,"list(F11_no_owned = c(2, 6, 12), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:ac3da862-9e6c-4962-94b6-f4c31624f207,no,"NA","NA",yes,3,"NA",burntbricks,2,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra produtos alimentares, de higiene",3,yes,no,2017-04-26T16:45:01.000Z,no,yes,3,NULL,district1,cement,"list(E12_apply_water = c(""furrows"", NA, ""furrows""), E08_crops = list(""tomatoes"", NULL, ""beans""), E09_irr_manager = list(c(""du_head"", ""spouse"", ""child""), NULL, c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(""far"", NA, ""far""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""yes"", ""no"", ""yes""), E14_access = c(""purchased"", NA, ""purchased""), E11_water_fields = c(""canal_gravity"", +NA, ""canal_gravity""), E10_water_source = c(""river"", NA, ""river""), E06_plot_no = 1:3)",2017-04-26,no,2017-04-26T16:13:50.000Z,"list(D04_crops_harvsted = list(""tomatoes"", ""maize"", ""beans""), D01_curr_plot = 1:3, D02_total_plot = c(0.5, 3, 0.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Mar"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 900, D19_pesticide = ""required_buyer"", + D07_ploughing_typ = ""ox"", D24_amnt_sold = 85, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 700, D12_harvst_amount = 85, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 800)), + D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 3, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 1250, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 18, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, + D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 900, D12_harvst_amount = 38, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", + D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 3000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 6, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 800, D12_harvst_amount = 6, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 800)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Construiu sua morada"", ""Comprou cabecas de gado bovino"", ""Comprou uma motorizada""), F03_year = c(2014, 2012, 2010), F02_source_income = c(""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada"", ""Renda proveniente de trabalho asalariado""))",3,"c(""oxen"", ""cows"", ""goats"")",7,no,more_once,"c(""cow_cart"", ""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""table"", ""mobile_phone"")",more_half,yes,"c(""Jan"", ""Sept"", ""Oct"")",6,no,NA,"c(""cheaper"", ""less_work"", ""train_outside_org"")",no,73,"list(B06_memb_education = c(""pri_4"", ""pri_6"", ""sec_1"", ""pri_6"", ""pri_3"", ""pri_1"", ""na""), B05_memb_age = c(60, 55, 15, 13, 9, 6, 3), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""other"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Occasional"", ""Always"", ""Always"", ""Always"", ""Always"" +), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, ""Conhado"", NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA +))",province1,4,yes,village3,mabatisloping,714,33.48341488,yes,4,no,no,"Os sacos sao sacos de 50kgs + +Ponto geográfico + +Latitude: 0512572 +Longetude: 7906701 +Altitude: 716.8m","NA",yes,"c(""rely_less_food"", ""limit_variety"")","NA",-19.11219747,list(),"NA",yes,7 +2,yes,ward2,yes,yes,48,6,"list(F11_no_owned = c(2, 4, 6, 30), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""poultry""))","NA",uuid:4178a296-903a-4a8e-9cfa-0cd6143476e8,yes,"NA","NA",yes,6,"NA",burntbricks,5,list(),"c(""Sept"", ""Oct"")","Compra vestuário, produtos alimentares e insumos agrícola.",3,yes,no,2017-04-26T17:26:21.000Z,no,no,6,NULL,district1,cement,"list(E12_apply_water = c(NA, NA, NA, ""furrows"", ""furrows"", ""furrows""), E08_crops = list(NULL, NULL, NULL, ""cabbage"", ""tomatoes"", ""vegetable""), E09_irr_manager = list(NULL, NULL, NULL, ""du_head"", ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA, NA, NA, NA), E14_access_other = c(NA, NA, NA, NA, NA, NA), E08_crops_other = c(NA, NA, NA, NA, NA, NA), E13_plot_loc = c(NA, NA, NA, ""near"", ""near"", ""near""), E16_amount_pay = c(NA, NA, NA, NA, NA, NA), E15_duration = c(NA, NA, NA, NA, NA, NA), E07_bring = c(""no"", +""no"", ""no"", ""yes"", ""yes"", ""yes""), E14_access = c(NA, NA, NA, ""allocated_cus_aut"", ""allocated_cus_aut"", ""allocated_cus_aut""), E11_water_fields = c(NA, NA, NA, ""canal_gravity"", ""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, NA, NA, ""river"", ""river"", ""river""), E06_plot_no = 1:6)",2017-04-26,no,2017-04-26T16:45:28.000Z,"list(D04_crops_harvsted = list(""maize"", ""sorghum"", ""peanut"", ""cabbage"", ""tomatoes"", ""vegetable""), D01_curr_plot = 1:6, D02_total_plot = c(6, 6, 6, 3, 3, 3), D03_unit_land = c(""hactare"", ""hactare"", ""hactare"", ""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1"", ""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA, NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", + D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 5, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 210, D12_harvst_amount = 40, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""July"", D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 3, D10_who_own_other = NA, D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""sorghum"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1500, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, + D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""peanut"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1.5, D11_harvst_unit = ""other"", D19_pesticide_other = NA, D25_price = 30, + D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 1000, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 1600, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 1000, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = ""Unidades"", D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""paid_fertilizer""), D14_cost_fert = 1200)), D_curr_crop = ""cabbage"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 1200, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, + D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 1200, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1200)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list( + ""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 880, D12_harvst_amount = 4, D16_imprv_seed = ""yes"", + D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1200)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA, NA, NA, NA))","list(F01_item = c(""Comprou cabeças de gado"", ""Comprou tracção animal"", ""Construiu uma habitação"", ""Pagamento de despesas escolares""), F03_year = c(1997, 2001, 2001, 2003), F02_source_income = c(""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada""))",4,"c(""oxen"", ""cows"", ""goats"", ""poultry"")",17,no,more_once,"c(""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",more_half,yes,none,22,no,NA,NULL,yes,76,"list(B06_memb_education = c(""pri_7"", ""pri_3"", ""pri_3"", ""sec_3"", ""pri_4"", ""na"", ""na"", ""pri_7"", ""pri_6"", ""pri_6"", ""pri_4"", ""pri_4"", ""na"", ""na"", ""pri_2"", ""na"", ""na""), B05_memb_age = c(48, 38, 35, 20, 11, 4, 5, 16, 15, 14, 11, 11, 3, 4, 8, 3, 5), B02_memb_gender = c(""male"", ""male"", ""female"", ""male"", ""male"", ""male"", ""male"", ""male"", ""female"", ""male"", ""female"", ""male"", ""male"", ""male"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""unmarried"", ""single"", ""unmarried"", ""single"", +""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list( + c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:17, B08_interviewee_activities = list(c(""small_scale_farm"", ""other""), c(""housework"", ""small_scale_farm""), c(""housework"", +""small_scale_farm"", ""comm_farming""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(""Venda de cabecas de gado bovino"", NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,9,yes,village3,mabatipitched,702,33.48341762,yes,22,no,no,"Ponto geográfico + +Latitude: 0513829 +Longetude: 7911004 +Altitude: 71.8m","NA",yes,na,"NA",-19.11220193,list(),"NA",no,17 +1,no,ward2,yes,no,22,2,"list(F11_no_owned = 1:2, F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:a1e9df00-c8ae-411c-931c-c7df898c68d0,no,"NA","NA",no,2,"NA",burntbricks,2,list(),"c(""Aug"", ""Sept"", ""Oct"")",Compra produtos alimentares,2,yes,no,2017-04-27T12:56:42.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""maize"", ""other"")), E09_irr_manager = list(NULL, ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, ""Inhame""), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""allocated_cus_aut""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-04-27,no,2017-04-27T12:27:31.000Z,"list(D04_crops_harvsted = list(""maize"", c(""maize"", ""other"")), D01_curr_plot = 1:2, D02_total_plot = c(5, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""2""), D04_crops_harvsted_other = c(NA, ""Inhame""), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 120, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 8, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 120, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""other""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1))), + D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou chapas de zinco"", ""Comprou aparelho sonora""), F03_year = c(2014, 2005), F02_source_income = c(""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada""))",2,"c(""oxen"", ""cows"")",5,no,never,"c(""radio"", ""cow_plough"", ""solar_torch"")",abt_half,no,"c(""Aug"", ""Sept"", ""Oct"")",17,no,NA,NULL,no,83,"list(B06_memb_education = c(""none"", ""none"", ""sec_4"", ""sec_1"", ""pri_3""), B05_memb_age = c(60, 54, 40, 14, 10), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", +""comm_farming""), ""artisan"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm""), ""artisan"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,33,yes,village3,mabatisloping,693,33.48349754,yes,17,no,no,"Latitude: 0512467 +Longetude: 7906174 +Altitude: 70.0m","NA",yes,"c(""borrow_food"", ""lab_ex_food"")","NA",-19.11231638,list(),"NA",no,5 +1,yes,ward2,yes,yes,40,3,"list(F11_no_owned = 2:3, F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:4d0f472b-f8ae-4026-87c9-6b5be14b0a70,yes,"NA","NA",yes,3,"NA",sunbricks,3,list(),"c(""Sept"", ""Oct"")",Paga despesas de escolas e produtos alimentares,2,yes,no,2017-04-27T13:23:06.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, c(""beans"", ""tomatoes""), ""tomatoes""), E09_irr_manager = list(NULL, ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""inherited"", ""inherited""), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity"" +), E10_water_source = c(NA, ""river"", ""river""), E06_plot_no = 1:3)",2017-04-27,no,2017-04-27T12:58:02.000Z,"list(D04_crops_harvsted = list(""maize"", ""beans"", ""tomatoes""), D01_curr_plot = c(1, 2, NA), D02_total_plot = c(1, 1.5, 3), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 13, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1700)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Nov"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1200, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 25, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 30, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1700), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 1600, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = 20, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1700)), D_curr_crop = c(""beans"", +NA), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 30, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, + D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 30, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1700)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou cabecas de gado"", ""Comprou chapas de zinco""), F03_year = c(2005, 2015), F02_source_income = c(""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada""))",2,"c(""oxen"", ""cows"")",7,no,never,"c(""radio"", ""cow_plough"")",abt_half,yes,"c(""Oct"", ""Nov"")",12,yes,NA,NULL,NA,85,"list(B06_memb_education = c(""pri_5"", ""none"", ""pri_6"", ""pri_3"", ""pri_6"", ""na"", ""pri_1""), B05_memb_age = c(40, 25, 13, 10, 14, 1, 6), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""other"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list( + c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, ""Sobrinho"", NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,10,yes,village3,grass,697,33.48358508,no,12,no,no,"Ponto geografico + +Latitude: 0513771 +Longetude: 7905618 +Altitude: 77.8m","NA",yes,na,"NA",-19.11235114,list(),"NA",yes,7 +2,no,ward2,yes,yes,10,2,"list(F11_no_owned = c(3, 2, 5), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:b3b309c6-f234-4830-8b30-87d26a17ee1d,yes,"NA","NA",no,2,"NA",burntbricks,2,list(),"c(""Sept"", ""Oct"")","Compra produtos de genero alimentícios, de higiene e utensílios domésticos",3,yes,no,2017-04-27T16:41:41.000Z,yes,no,2,NULL,district1,cement,"list(E12_apply_water = c(NA, ""basin""), E08_crops = list(NULL, c(""maize"", ""beans"", ""vegetable"", ""other"")), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, ""Inhame""), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""bucket""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-04-27,no,2017-04-27T16:11:23.000Z,"list(D04_crops_harvsted = list(""maize"", c(""maize"", ""beans"", ""vegetable"", ""other"")), D01_curr_plot = 1:2, D02_total_plot = c(1.5, 3), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""4""), D04_crops_harvsted_other = c(NA, ""Inhame""), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1250, D12_harvst_amount = 0, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 2500, + D12_harvst_amount = 0, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 1, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, + D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 160, D12_harvst_amount = 1, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), + D14_cost_fert = 150), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 0.5, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 1, + D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""beans"", ""vegetable"", ""other""), D_repeat_times_count = c(""1"", ""1"", ""1"", ""1""), D05_times = c(1, 1, 1, 1))), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Comprou tracção animal"", ""Comprou terreno na vila de Messica e outros arredores"", ""Construiu a sua moradia""), F03_year = c(2003, 2010, 2012, 2013), F02_source_income = c(""Renda proveniente de actividades de garimpo"", ""Venda de carvão vegetal"", ""Renda proveniente da venda de carvao e agricultura irrigada"", ""Renda proveniente de venda de carvão vegetal e agricultura irrigada""))",3,"c(""oxen"", ""cows"", ""goats"")",5,no,never,"c(""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",less_half,yes,"c(""Oct"", ""Nov"")",10,yes,NA,NULL,NA,89,"list(B06_memb_education = c(""pri_7"", ""pri_4"", ""pri_1"", ""none"", ""na""), B05_memb_age = c(26, 33, 6, 3, 1), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", c(""small_scale_farm"", ""other""), ""na"", + ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, ""Fabrico de carvão"", NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,13,no,village2,mabatisloping,710,33.48348329,no,10,no,yes,"Ponto geográfico + +Latitude: 0511306 +Longetude: 7908926 +Altitude: 690.2m","NA",no,"c(""rely_less_food"", ""limit_variety"", ""go_forest"", ""lab_ex_food"")","NA",-19.11231667,list(),"NA",no,5 +1,no,ward2,yes,yes,4,2,"list(F11_no_owned = 1, F_curr_liv = ""goats"")","NA",uuid:3c174acd-e431-4523-9ad6-eb14cddca805,no,"NA","NA",no,2,"NA",muddaub,1,list(),"c(""Sept"", ""Oct"", ""Nov"")",Compra produtos alimentícios e de higiene,3,yes,no,2017-04-27T18:11:54.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""beans"", ""tomatoes"")), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, 1500), E15_duration = c(NA, ""year""), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""rented""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-04-27,no,2017-04-27T16:42:02.000Z,"list(D04_crops_harvsted = list(""maize"", c(""beans"", ""tomatoes"")), D01_curr_plot = 1:2, D02_total_plot = c(4, 3), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""2""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 400, D12_harvst_amount = 18, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), + list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = NA, D06_mnth_harvest = ""Mar"", D08_land_planted = 1.5, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = 320, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 120, + D12_harvst_amount = 3, D16_imprv_seed = ""yes"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""rentedin"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 270), list(D26_who_sell_harv = list(""spouse""), D10_who_own = NA, D06_mnth_harvest = ""Mar"", D08_land_planted = 2.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 700, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 7, D10_who_own_other = NA, + D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 7, D16_imprv_seed = ""no"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""rentedin"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 540)), D_curr_crop = c(""beans"", ""tomatoes""), D_repeat_times_count = c(""1"", + ""1""), D05_times = c(1, 1))), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Comprou bicicleta"", F03_year = 2015, F02_source_income = ""Renda proveniente de agricultura irrigada"")",1,goats,3,yes,never,"c(""bicycle"", ""solar_torch"")",abt_half,yes,"c(""Sept"", ""Oct"", ""Nov"")",10,yes,NA,NULL,NA,101,"list(B06_memb_education = c(""sec_1"", ""pri_6"", ""na""), B05_memb_age = c(25, 22, 1), B02_memb_gender = c(""male"", ""female"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA), B_memb_no = 1:3, B08_interviewee_activities = list(""small_business"", + c(""housework"", ""small_scale_farm""), ""na""), B03_relationship_du_other = c(NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA))",province1,11,yes,village2,grass,702,33.48341767,no,10,no,no,"Ponto geográfico + +Latitude: 0511134 +Longetude: 7908833 +Altitude: 690.5m","NA",no,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""restrict_adults"", ""borrow_food"", ""lab_ex_food"")","NA",-19.11223501,list(),"NA",no,3 +1,yes,ward2,yes,yes,96,2,"list(F11_no_owned = c(5, 10, 10, 2, 28), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""pigs"", ""poultry""))","NA",uuid:e9d79844-ef14-493b-bbd6-d13691cc660e,yes,"NA","NA",yes,2,"NA",sunbricks,2,list(),"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")",Compra produtos de alimentação e d3 higiene,3,yes,no,2017-04-27T18:09:45.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""basin""), E08_crops = list(NULL, c(""beans"", ""bananas"", ""vegetable"", ""other"")), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, ""Inhame""), E13_plot_loc = c(NA, ""far""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-04-27,no,2017-04-27T17:38:53.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""sorghum""), c(""beans"", ""bananas"", ""vegetable"", ""other"")), D01_curr_plot = c(2, 2), D02_total_plot = c(12.5, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""2"", ""4""), D04_crops_harvsted_other = c(NA, ""Inhame""), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 8.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, + D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 4, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = NA, + D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""sorghum""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Feb"", D08_land_planted = 0.25, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 320, D12_harvst_amount = 10, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", + D08_land_planted = 0.25, D11_harvst_unit = ""other"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 15, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = ""Unidades"", D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.25, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = 50, D12_harvst_amount = 5, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.25, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""beans"", ""bananas"", ""vegetable"", ""other""), D_repeat_times_count = c(""1"", ""1"", +""1"", ""1""), D05_times = c(1, 1, 1, 1))), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou de gado bovino"", ""Construiu sua habitação"", ""Comprou carroça de boi""), F03_year = c(2000, 2003, 2007), F02_source_income = c(""Renda proveniente da agricultura irrigada"", ""Renda proveniente da agricultura irrigada"", ""Renda proveniente de agricultura irrigada""))",5,"c(""oxen"", ""cows"", ""goats"", ""pigs"", ""poultry"")",6,no,never,"c(""cow_cart"", ""cow_plough"", ""solar_panel"", ""sofa_set"", ""mobile_phone"")",less_half,yes,"c(""Jan"", ""Feb"", ""Dec"")",50,no,NA,NULL,NA,103,"list(B06_memb_education = c(""na"", ""na"", ""pri_7"", ""pri_6"", ""pri_5"", ""pri_3"", ""pri_1""), B05_memb_age = c(96, 80, 14, 12, 10, 9, 0), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""male"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", +""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""housework"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,9,yes,village3,mabatisloping,712,33.48337002,no,10,no,no,"Ponto geográfico + +Latitude: 0513721 +Longetude: 7909375 +Altitude: 774.1m","NA",no,go_forest,"NA",-19.11219049,list(),"NA",yes,6 +2,no,ward2,yes,no,15,2,"list(F11_no_owned = c(2, 2), F_curr_liv = c(""cows"", ""goats""))","NA",uuid:76206b0b-af74-4344-b24f-81e839f0d7b0,no,"NA","NA",no,2,"NA",burntbricks,3,list(),"c(""Aug"", ""Sept"", ""Oct"")","Compra produtos alimentares, de higiene e pagamento das despesas escolares",3,yes,no,2017-04-28T06:52:04.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""tomatoes"", ""onion"")), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""far""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-04-28,no,2017-04-28T06:27:07.000Z,"list(D04_crops_harvsted = list(""maize"", c(""tomatoes"", ""onion"")), D01_curr_plot = 1:2, D02_total_plot = c(5, 2), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""2""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""parent""), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1200, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 7, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 42, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""parent""), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 50, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 35, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = 1500, D12_harvst_amount = 37, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 4500), list(D26_who_sell_harv = list(""parent""), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 0.5, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 15, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 60, + D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 800, D12_harvst_amount = 60, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1900)), D_curr_crop = c(""tomatoes"", ""onion"" +), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1))), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Comprou cadeiras de sofa, construiu a sua casa"", F03_year = 2015, F02_source_income = ""Renda proveniente de agricultura irrigada"")",2,"c(""cows"", ""goats"")",12,no,frequently,"c(""cow_plough"", ""table"", ""sofa_set"", ""mobile_phone"")",less_half,no,"c(""Jan"", ""Feb"")",15,yes,NA,NULL,yes,102,"list(B06_memb_education = c(""sec_1"", ""pri_7"", ""sec_1"", ""pri_7"", ""pri_5"", ""pri_4"", ""pri_6"", ""pri_3"", ""pri_1"", ""none"", ""na"", ""pri_2""), B05_memb_age = c(42, 37, 20, 18, 16, 14, 12, 10, 8, 6, 2, 11), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male"", ""male"", ""female"", ""male"", ""female"", ""female"", ""male"", ""female""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", +""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""other""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, +NA, NA, NA), B_memb_no = 1:12, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, ""Sobrinho""), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,11,yes,village3,mabatisloping,691,33.40388996,yes,2,no,no,"Ponto Geográfico + +Latitude: 0513536 +Longetude: 799352 +Altitude: 766m","NA",yes,lab_ex_food,"NA",-19.04413333,list(),"NA",no,12 +1,yes,ward2,yes,no,48,2,"list(F11_no_owned = c(1, 1), F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:da3fa7cc-5ce9-44fd-9a78-b8982b607515,no,"NA","NA",no,2,"NA",burntbricks,2,list(),"c(""Aug"", ""Sept"")","Compra produtos alimentares, de higiene e paga despesas escolares.",2,yes,no,2017-04-28T07:31:38.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""maize"", ""beans"", ""tomatoes"", ""onion"")), E09_irr_manager = list(NULL, ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""purchased""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-04-28,no,2017-04-28T07:09:39.000Z,"list(D04_crops_harvsted = list(""maize"", c(""maize"", ""beans"", ""tomatoes"", ""onion"")), D01_curr_plot = 1:2, D02_total_plot = c(12, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""4""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 200, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Mar"", D08_land_planted = 0.25, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 200, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 3, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Feb"", D08_land_planted = 0.25, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 400, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 3, + D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 900, D12_harvst_amount = 3, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1200), list(D26_who_sell_harv = list(""du_head""), + D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 0.25, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 14, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 1000, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 15, D16_imprv_seed = ""yes"", + D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1220), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 0.25, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 30, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 50, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 450, D12_harvst_amount = 50, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1220)), D_curr_crop = c(""maize"", ""beans"", ""tomatoes"", ""onion""), D_repeat_times_count = c(""1"", ""1"", ""1"", ""1""), D05_times = c(1, +1, 1, 1))), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou cabeças de gado"", ""Reabilitou a sua casa""), F03_year = c(2003, 2015), F02_source_income = c(""Renda proveniente da agricultura irrigada"", ""Renda proveniente da agricultura irrigada""))",2,"c(""oxen"", ""cows"")",6,no,more_once,cow_plough,abt_half,yes,"c(""Aug"", ""Sept"", ""Oct"")",20,no,NA,NULL,NA,78,"list(B06_memb_education = c(""pri_4"", ""pri_5"", ""sec_5"", ""na"", ""na"", ""na""), B05_memb_age = c(48, 27, 18, 4, 2, 8), B02_memb_gender = c(""female"", ""female"", ""female"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""widow/er"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""other""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", + ""small_scale_farm"", ""na"", ""na"", ""na"", c(""housework"", ""small_scale_farm"")), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na"", c(""housework"", ""small_scale_farm"")), B03_relationship_du_other = c(NA, NA, NA, NA, NA, ""Trabalhador""), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,11,yes,village3,mabatipitched,723,33.40398184,no,20,no,no,"Ponto geográfico + +Latitude: 0513110 +Longetude: 7910185 +Altitude: 729m","NA",no,na,"NA",-19.04402591,list(),"NA",no,6 +1,no,ward2,yes,no,12,1,list(),"NA",uuid:a85df6df-0336-46fa-a9f4-522bf6f8b438,no,"NA","NA",yes,1,"NA",muddaub,1,list(),"c(""Sept"", ""Oct"", ""Nov"")","Melhorar dieta alimentar +Comprar vestuários +Comprar produtos de higiene",3,yes,no,2017-04-28T09:25:51.000Z,no,no,1,NULL,district1,earth,"list(E12_apply_water = ""furrows"", E08_crops = list(c(""maize"", ""sorghum"", ""tomatoes"", ""onion"", ""vegetable"")), E09_irr_manager = list(""du_head""), E09_irr_manager_other = NA, E14_access_other = NA, E08_crops_other = NA, E13_plot_loc = ""far"", E16_amount_pay = NA, E15_duration = NA, E07_bring = ""yes"", E14_access = ""allocated_cus_aut"", E11_water_fields = ""canal_gravity"", E10_water_source = ""river"", E06_plot_no = 1)",2017-04-28,no,2017-04-28T09:01:47.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""sorghum"", ""tomatoes"", ""onion"", ""vegetable"")), D01_curr_plot = 1, D02_total_plot = 3, D03_unit_land = ""hactare"", D_crops_count = ""5"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 400, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""spouse_du_free"", + D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""Sept"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 450, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 50, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, + D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1200, D12_harvst_amount = 50, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""June"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", + D19_pesticide_other = NA, D25_price = 500, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 30, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 1000, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 450, D12_harvst_amount = 30, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", + D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""July"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 60, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 1720, D22_sell = ""yes"", + D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1680, D12_harvst_amount = 60, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = c(""maize"", ""sorghum"", ""tomatoes"", ""onion"", ""vegetable""), D_repeat_times_count = c(""1"", ""1"", ""1"", ""1"", ""1""), D05_times = c(1, 1, 1, 1, 1))), D03_unit_land_other = NA)","list(F01_item = c(""Construiu sua casa"", ""Despesas escolares dos filhos""), F03_year = c(2015, 2006), F02_source_income = c(""Renda proviniente da agricultura irrigada"", ""Renda proveniente da agricultura irrigada""))",1,none,5,no,more_once,"c(""cow_cart"", ""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"")",more_half,no,none,12,yes,NA,NULL,NA,80,"list(B06_memb_education = c(""pri_4"", ""sec_3"", ""sec_1"", ""sec_3"", ""pri_7""), B05_memb_age = c(54, 20, 19, 17, 16), B02_memb_gender = c(""male"", ""male"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""unmarried""), B03_relationship_du = c(""head"", ""Child"", ""Child"", ""Child"", ""other""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""artisan"", ""na"", ""na"", ""na"", c(""housework"", ""small_scale_farm"" +)), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""small_scale_farm"", ""artisan""), ""na"", ""na"", ""na"", c(""housework"", ""small_scale_farm"")), B03_relationship_du_other = c(NA, NA, NA, NA, ""Nora""), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,6,yes,village3,mabatipitched,689,33.40390046,no,12,no,no,"Ponto geográfico + +Latitude: 0512614 +Longetude: 7910890 +Altitude: 711m","NA",no,na,"NA",-19.04415001,list(),"NA",no,5 +1,yes,ward2,yes,no,52,4,"list(F11_no_owned = c(15, 17, 41, 3), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""pigs""))","NA",uuid:bb2bb365-7d7d-4fe9-9353-b21269676119,no,"NA","NA",yes,4,"NA",sunbricks,4,list(),"c(""Aug"", ""Sept"")","Compra produtos alimentares, de higiene e pagamento das despesas escolares.",3,yes,no,2017-04-28T15:18:10.000Z,no,no,4,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows"", ""furrows"", ""furrows""), E08_crops = list(NULL, c(""beans"", ""tomatoes""), c(""beans"", ""tomatoes"", ""vegetable""), c(""tomatoes"", ""baby_corn"")), E09_irr_manager = list(NULL, ""du_head"", ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA, NA), E14_access_other = c(NA, NA, NA, NA), E08_crops_other = c(NA, NA, NA, NA), E13_plot_loc = c(NA, ""middle"", ""middle"", ""middle""), E16_amount_pay = c(NA, NA, NA, NA), E15_duration = c(NA, NA, NA, NA), E07_bring = c(""no"", ""yes"", +""yes"", ""yes""), E14_access = c(NA, ""inherited"", ""inherited"", ""inherited""), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, ""river"", ""river"", ""river""), E06_plot_no = 1:4)",2017-04-28,no,2017-04-28T14:25:13.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""sorghum""), c(""beans"", ""tomatoes""), c(""beans"", ""tomatoes"", ""vegetable""), c(""tomatoes"", ""baby_corn"")), D01_curr_plot = 1:4, D02_total_plot = c(5, 2, 0.5, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""2"", ""2"", ""3"", ""2""), D04_crops_harvsted_other = c(NA, NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""June"", D08_land_planted = 3, D11_harvst_unit = ""bags"", + D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""July"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, + D12_harvst_amount = 7, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""sorghum""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""Oct"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, + D25_price = 4800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 1, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""paid_fertilizer""), D14_cost_fert = 1500), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""Sept"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 200, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 16, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""yes"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = 500, D12_harvst_amount = 16, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500)), D_curr_crop = c(""beans"", ""tomatoes""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""Oct"", D08_land_planted = 0.3, + D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 500, D12_harvst_amount = 3, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""Mar"", D08_land_planted = 0.3, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 200, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 24, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, + D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 500, D12_harvst_amount = 24, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""Sept"", D08_land_planted = 0.3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, + D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 8, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 800, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 310, D12_harvst_amount = 8, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""paid_fertilizer""), D14_cost_fert = 1500)), D_curr_crop = c(""beans"", ""tomatoes"", ""vegetable""), D_repeat_times_count = c(""1"", ""1"", ""1""), D05_times = c(1, 1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 150, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 180, D10_who_own_other = NA, D_use_pest = ""yes"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1500, D12_harvst_amount = 180, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""own_manure""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""du_head"", ""du_head""), D10_who_own = c(""spouse_du_free"", +""spouse_du_free""), D06_mnth_harvest = c(""Sept"", ""Sept""), D08_land_planted = c(0.25, 0.25), D11_harvst_unit = c(""crates"", ""crates""), D19_pesticide_other = c(NA, NA), D25_price = c(75, 75), D19_pesticide = c(NA, NA), D07_ploughing_typ = c(""ox"", ""ox""), D24_amnt_sold = c(750, 900), D10_who_own_other = c(NA, NA), D_use_pest = c(""no"", ""no""), D26_who_sell_harv_other = c(NA, NA), D15_cost_manu = c(NA, NA), D07_ploughing_typ_other = c(NA, NA), D18_cost_pestcd = c(NA, NA), D22_sell = c(""yes"", ""yes""), D20_paid_labour = c(""no"", +""no""), D21_cost_labour = c(NA, NA), D17_cost_seed = c(NA, NA), D12_harvst_amount = c(750, 900), D16_imprv_seed = c(""no"", ""no""), D23_where_sold = list(""On_contract"", ""On_contract""), D11_harvst_unit_other = c(NA, NA), D09_land_ownshp_other = c(NA, NA), D09_land_ownshp = c(""owned"", ""owned""), D13_fertilizer = list(""none"", ""none""), D14_cost_fert = c(NA, NA))), D_curr_crop = c(""tomatoes"", ""baby_corn""), D_repeat_times_count = c(""1"", ""2""), D05_times = 1:2)), D03_unit_land_other = c(NA, NA, NA, NA))","list(F01_item = c(""Comprou cabeças de gado caprino"", ""Comprou gado bovino"", ""Comprou carroça de tracção animal""), F03_year = c(2005, 2000, 2011), F02_source_income = c(""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada""))",4,"c(""oxen"", ""cows"", ""goats"", ""pigs"")",14,no,never,"c(""cow_cart"", ""bicycle"", ""cow_plough"")",abt_half,yes,"c(""Jan"", ""Feb"", ""Dec"")",35,no,NA,NULL,no,104,"list(B06_memb_education = c(""pri_3"", ""sec_3"", ""pri_5"", ""sec_2"", ""pri_7"", ""pri_7"", ""pri_5"", ""pri_1"", ""pri_4"", ""na"", ""na"", ""sec_1"", ""pri_3"", ""na""), B05_memb_age = c(52, 45, 35, 16, 14, 12, 12, 7, 9, 5, 5, 19, 11, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""female"", ""female"", ""male"", ""female"", ""male"", ""male"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", +""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""other"", ""other"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm"", ""small_business""), c(""housework"", ""small_scale_farm"", +""small_business""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:14, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm"", ""small_business""), c(""housework"", ""small_scale_farm"", ""small_business""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, +NA, ""Sobrinho"", ""Sobrinha"", NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,9,yes,village3,grass,711,33.4833734,yes,16,no,yes,"Ponto geográfico + +Latitude: 0513630 +Longetude: 790935 +Altitude: 671.5m","NA",no,"c(""go_forest"", ""lab_ex_food"")","NA",-19.11225606,list(),"NA",no,14 +1,yes,ward2,yes,no,40,2,"list(F11_no_owned = c(2, 6), F_curr_liv = c(""cows"", ""poultry""))","NA",uuid:af0904ee-4fdb-4090-973f-599c81ddf022,no,"NA","NA",yes,2,"NA",sunbricks,2,list(),"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")","Compra de produtos alimentares, de higiene, utensílios domésticos e pagamento de despesas escolares",3,yes,no,2017-04-28T15:58:10.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""flood""), E08_crops = list(NULL, c(""tomatoes"", ""vegetable"")), E09_irr_manager = list(NULL, ""child""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-04-28,no,2017-04-28T15:32:38.000Z,"list(D04_crops_harvsted = list(""maize"", c(""tomatoes"", ""vegetable"")), D01_curr_plot = 1:2, D02_total_plot = c(3, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""2""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""parent""), D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 50, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 50, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1000, D12_harvst_amount = 50, + D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 4500), list(D26_who_sell_harv = list(""parent""), D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 300, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 5, D10_who_own_other = NA, + D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 300, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 500, D12_harvst_amount = 5, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1500)), D_curr_crop = c(""tomatoes"", ""vegetable""), D_repeat_times_count = c(""1"", +""1""), D05_times = c(1, 1))), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Comprou cabeças de gado bovino e uma motorizada"", F03_year = 2016, F02_source_income = ""Renda proveniente da agricultura irrigada"")",2,"c(""cows"", ""poultry"")",6,yes,frequently,"c(""motorcyle"", ""radio"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",more_half,yes,"c(""Jan"", ""Feb"", ""Dec"")",20,yes,NA,NULL,yes,105,"list(B06_memb_education = c(""pri_5"", ""sec_4"", ""pri_4"", ""pri_2"", ""na"", ""na""), B05_memb_age = c(40, 37, 10, 8, 5, 2), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", + c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,11,yes,village3,mabatisloping,735,33.48350526,yes,1,no,no,"Ponto geográfico + +Latitude: 0513553 +Longetude: 7909671 +Altitude: 751.0m","NA",yes,lab_ex_food,"NA",-19.11221203,list(),"NA",no,6 +5,no,ward2,yes,no,22,5,"list(F11_no_owned = c(4, 1), F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:468797c1-4a65-4f35-9c83-e28ce46972a2,no,"NA","NA",yes,5,"NA",sunbricks,4,list(),"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")","Compra produtos alimentares e de higiene. +Compra vestuários e paga despesas escolares",3,yes,no,2017-04-30T06:47:01.000Z,yes,no,5,NULL,district1,cement,"list(E12_apply_water = c(""furrows"", ""furrows"", NA, ""furrows"", ""furrows""), E08_crops = list(""baby_corn"", ""piri_piri"", NULL, ""cabbage"", ""tomatoes""), E09_irr_manager = list(""du_head"", ""du_head"", NULL, ""du_head"", ""du_head""), E09_irr_manager_other = c(NA, NA, NA, NA, NA), E14_access_other = c(NA, NA, NA, NA, NA), E08_crops_other = c(NA, NA, NA, NA, NA), E13_plot_loc = c(""far"", ""far"", NA, ""far"", ""far""), E16_amount_pay = c(NA, NA, NA, NA, NA), E15_duration = c(NA, NA, NA, NA, NA), E07_bring = c(""yes"", ""yes"", +""no"", ""yes"", ""yes""), E14_access = c(""allocated_cus_aut"", ""allocated_cus_aut"", NA, ""allocated_cus_aut"", ""allocated_cus_aut""), E11_water_fields = c(""canal_gravity"", ""canal_gravity"", NA, ""canal_gravity"", ""canal_gravity""), E10_water_source = c(""river"", ""river"", NA, ""river"", ""river""), E06_plot_no = 1:5)",2017-04-30,no,2017-04-30T05:51:18.000Z,"list(D04_crops_harvsted = list(""baby_corn"", ""piri_piri"", ""maize"", ""cabbage"", ""tomatoes""), D01_curr_plot = 1:5, D02_total_plot = c(22, 16, 4, 1, 2), D03_unit_land = c(""hactare"", ""hactare"", ""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Oct"", D08_land_planted = 17, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, + D25_price = 5, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 108000, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 108, D16_imprv_seed = ""no"", D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""none""), D14_cost_fert = NA)), D_curr_crop = ""baby_corn"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 14, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 25, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 32000, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, + D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 49000, D12_harvst_amount = 32000, D16_imprv_seed = ""yes"", D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1)), D_curr_crop = ""piri_piri"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", + D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 54, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head"", ""du_head""), D10_who_own = c(""du"", ""du""), D06_mnth_harvest = c(""July"", ""Sept""), D08_land_planted = c(0.5, 0.5), D11_harvst_unit = c(""other"", ""other""), D19_pesticide_other = c(NA, NA), D25_price = c(20, 20), D19_pesticide = c(""own_choice"", ""own_choice""), D07_ploughing_typ = c(""ox"", ""ox"" +), D24_amnt_sold = c(1050, 1050), D10_who_own_other = c(NA, NA), D_use_pest = c(""yes"", ""yes""), D26_who_sell_harv_other = c(NA, NA), D15_cost_manu = c(NA, NA), D07_ploughing_typ_other = c(NA, NA), D18_cost_pestcd = c(850, 850), D22_sell = c(""yes"", ""yes""), D20_paid_labour = c(""no"", ""no""), D21_cost_labour = c(NA, NA), D17_cost_seed = c(NA, NA), D12_harvst_amount = c(1050, 1050), D16_imprv_seed = c(""no"", ""no""), D23_where_sold = list(""urban_market"", ""urban_market""), D11_harvst_unit_other = c(""Unidades"", +""Unidades""), D09_land_ownshp_other = c(NA, NA), D09_land_ownshp = c(""owned"", ""owned""), D13_fertilizer = list(""paid_fertilizer"", ""none""), D14_cost_fert = c(2400, NA))), D_curr_crop = ""cabbage"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 2, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 350, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", + D24_amnt_sold = 275, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 2550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 279, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", + D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA, NA, NA))","list(F01_item = c(""Comprou cabecas de gado bevinno"", ""Construiu sua casa"", ""Comprou tracção animal"", ""Comprou uma motorizada""), F03_year = c(1996, 2000, 1996, 2015), F02_source_income = c(""Renda proveniente da agricultura irrigada"", ""Renda proveniente da agricultura irrigada"", ""Renda proveniente da agricultura irrigada"", ""Renda proveniente da agricultura irrigada""))",2,"c(""oxen"", ""cows"")",15,no,never,"c(""cow_cart"", ""motorcyle"", ""bicycle"", ""radio"", ""sterio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",more_half,no,"c(""Oct"", ""Nov"", ""Dec"")",22,no,NA,NULL,NA,106,"list(B06_memb_education = c(""sec_4"", ""pri_4"", ""pri_3"", ""sec_5"", ""sec_2"", ""sec_4"", ""sec_1"", ""sec_3"", ""sec_1"", ""pri_3"", ""na"", ""na"", ""na"", ""na"", ""na""), B05_memb_age = c(21, 56, 59, 27, 30, 25, 21, 20, 17, 10, 3, 1, 3, 3, 1), B02_memb_gender = c(""female"", ""female"", ""male"", ""male"", ""male"", ""male"", ""male"", ""female"", ""female"", ""female"", ""female"", ""female"", ""female"", ""male"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""married"", ""unmarried"", ""unmarried"", ""unmarried"", ""single"", ""unmarried"", +""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""other"", ""Spouse"", ""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""other"", ""other"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""comm_farming"", ""comm_farming"", + ""comm_farming"", ""comm_farming"", ""comm_farming"", ""comm_farming"", ""comm_farming"", ""comm_farming"", ""comm_farming"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:15, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", +""comm_farming""), c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(""Nora"", NA, NA, NA, NA, NA, NA, ""Nora"", ""Nora"", NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,5,yes,village2,mabatisloping,709,33.48340866,no,21,no,yes,"As culturas de piripiri e de baby corn os insumos sao fornecidos pela companhia de Vanduzi e este nao conseguiu separar o custo destes do seu total rendimento. + +Ponto geográfico + +Latitude: 0510885 +Longetude: 7910938 +Altitude: 678m","NA",yes,"c(""lab_ex_food"", ""seek_government"")","NA",-19.11220965,list(),"NA",yes,15 +1,yes,ward2,no,no,12,NA,"list(F11_no_owned = c(2, 3, 8), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:602cd3f6-4a97-49c6-80e3-bcfd5c78dfa4,no,"NA","NA",yes,3,"NA",sunbricks,1,list(),NULL,NA,3,NA,NA,2017-05-03T13:37:53.000Z,no,NA,3,NULL,district1,earth,list(),2017-05-03,no,2017-05-03T13:14:43.000Z,"list(D04_crops_harvsted = list(""maize"", ""pigeonpeas"", ""sorghum""), D01_curr_plot = 1:3, D02_total_plot = c(5, 0.5, 6), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 2.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = 5, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 8, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""pigeonpeas"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 3, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, + D25_price = 200, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""none""), D14_cost_fert = NA)), D_curr_crop = ""sorghum"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou cabecas de gado caprino e bovino"", ""Construiu sua casa""), F03_year = c(2010, 2012), F02_source_income = c(""Produção agrícola"", ""Produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",4,no,NA,"c(""cow_cart"", ""bicycle"", ""radio"", ""cow_plough"", ""table"")",NA,yes,"c(""July"", ""Aug"", ""Sept"", ""Oct"", ""Nov"")",12,no,3,NULL,NA,109,"list(B06_memb_education = c(""pri_4"", ""pri_2"", ""pri_3"", ""na""), B05_memb_age = c(58, 32, 9, 1), B02_memb_gender = c(""male"", ""female"", ""male"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Occasional"", ""Occasional"", ""Occasional""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""other""), ""small_scale_farm"", ""na"", ""na""), B09_interviewee_main_activities_other = c(""Mecânico"", +NA, NA, NA), B_memb_no = 1:4, B08_interviewee_activities = list(c(""small_scale_farm"", ""other""), c(""housework"", ""small_scale_farm""), ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(""Mecânico"", NA, NA, NA))",province1,10,NA,village2,grass,699,33.48338036,NA,"NA",NA,yes,"Ponto geográfico + +Latitude: 18°55'5.5147""S +Longetude: 33°6'23.97661""E +Altitude: 702m","NA",yes,"c(""rely_less_food"", ""limit_portion"", ""reduce_meals"")","NA",-19.11222402,"list(E04_res_water_field = c(""land_far"", ""land_far"", ""land_far""), E03_crops = list(""maize"", ""sorghum"", ""pigeonpeas""), E04_res_water_field_other = c(NA, NA, NA), E05_tried_access = c(""yes_no_land_chied"", ""yes_no_land_chied"", ""yes_no_land_chied""), E05_tried_access_other = c(NA, NA, NA), E02_plot_no = 1:3)","NA",no,4 +3,yes,ward2,yes,yes,22,3,"list(F11_no_owned = c(3, 2, 4), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:e7c51ac4-24e4-475e-88e7-f85e896945e3,yes,"NA","NA",yes,3,"NA",sunbricks,2,list(),"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")","Compra de vestuário, produtos de alimentação e de higiene",2,yes,no,2017-05-03T13:58:06.000Z,no,no,3,NULL,district1,cement,"list(E12_apply_water = c(NA, NA, ""furrows""), E08_crops = list(NULL, NULL, ""maize""), E09_irr_manager = list(NULL, NULL, ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, NA, ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""no"", ""yes""), E14_access = c(NA, NA, ""inherited""), E11_water_fields = c(NA, NA, ""canal_gravity""), E10_water_source = c(NA, NA, ""river""), E06_plot_no = 1:3)",2017-05-03,no,2017-05-03T13:37:57.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize"", ""maize""), D01_curr_plot = 1:3, D02_total_plot = c(6, 5, 3), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 18, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1200, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = 5, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 40, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 500, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, + D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), + D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Construiu uma casa""), F03_year = c(2001, 2011), F02_source_income = c(""Renda proveniente da agricultura"", ""Renda proveniente de produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",6,no,never,"c(""bicycle"", ""radio"", ""cow_plough"", ""table"", ""mobile_phone"")",abt_half,yes,none,22,no,NA,NULL,NA,110,"list(B06_memb_education = c(""pri_6"", ""pri_4"", ""sec_3"", ""sec_1"", ""pri_5"", ""pri_3""), B05_memb_age = c(38, 37, 17, 14, 11, 9), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Holidays"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", + ""small_scale_farm"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA), B_memb_no = 1:6, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA))",province1,9,yes,village3,mabatisloping,704,33.48339714,no,22,no,yes,"Ponto geográfico + +Latitude: 18°54'22.6462""S +Longetude: 33°7'53.43208""E +Altitude: 776m","NA",no,na,"NA",-19.11219756,list(),"NA",no,6 +3,no,ward2,yes,no,26,3,"list(F11_no_owned = c(2, 5, 6, 9), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""poultry""))","NA",uuid:01210861-aba1-4268-98d0-0260e05f5155,no,"NA","NA",no,3,"NA",burntbricks,2,"list(B13_remitter_location_village = ""Tete"", B15_remitter_location_region_other = NA, B15_remitter_location_region = ""tete"", B14_remitter_location_district = ""Tete"", B12_remittance_money_type = ""Mecânico"")","c(""Sept"", ""Oct"")","Compra produtos agrícolas, de alimentação e de higiene.",3,yes,no,2017-05-03T14:27:03.000Z,no,no,3,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows"", NA), E08_crops = list(NULL, c(""beans"", ""onion""), NULL), E09_irr_manager = list(NULL, ""du_head"", NULL), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""middle"", NA), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""no""), E14_access = c(NA, ""inherited"", NA), E11_water_fields = c(NA, ""canal_gravity"", NA), E10_water_source = c(NA, ""river"", NA +), E06_plot_no = 1:3)",2017-05-03,yes,2017-05-03T14:00:13.000Z,"list(D04_crops_harvsted = list(""maize"", c(""beans"", ""onion""), ""other""), D01_curr_plot = 1:3, D02_total_plot = c(1, 1, 0.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""2"", ""1""), D04_crops_harvsted_other = c(NA, NA, ""Inhame""), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1200, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = 3, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 65, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Sept"", D08_land_planted = 0.5, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 54, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 65, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 100, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 4, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = 25, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 50, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""beans"", ""onion"" +), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 500, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", + D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""other"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou carroca de boi"", ""Comprou tracção animal"", ""Comprou telemóvel, e uma motorizada""), F03_year = c(2005, 2014, 2007), F02_source_income = c(""Renda proveniente da agricultura irrigada"", ""Renda proveniente da agricultura irrigada"", ""Renda proveniente da agricultura irrigada""))",4,"c(""oxen"", ""cows"", ""goats"", ""poultry"")",11,no,never,"c(""cow_cart"", ""motorcyle"", ""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",less_half,yes,none,16,no,NA,NULL,NA,113,"list(B06_memb_education = c(""pri_6"", ""pri_7"", ""na"", ""pri_6"", ""pri_3"", ""pri_3"", ""pri_7"", ""pri_6"", ""pri_7"", ""pri_6"", ""pri_7""), B05_memb_age = c(26, 43, 29, 21, 35, 38, 22, 24, 22, 18, 15), B02_memb_gender = c(""female"", ""male"", ""male"", ""female"", ""female"", ""female"", ""male"", ""male"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""single"", ""unmarried"", ""unmarried"", ""single"", ""unmarried"", ""unmarried"", ""single"", ""unmarried"", ""single"", ""single"", ""single""), B03_relationship_du = c(""other"", ""head"", +""other"", ""Child"", ""other"", ""other"", ""Child"", ""other"", ""other"", ""other"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""small_business""), c(""small_scale_farm"", ""small_business""), ""na"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, +NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:11, B08_interviewee_activities = list(c(""small_scale_farm"", ""small_business""), c(""small_scale_farm"", ""small_business""), ""na"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B03_relationship_du_other = c(""Conhada"", NA, ""Irmão"", NA, ""Conhada"", ""Conhada"", NA, ""Sobrinho"", ""Sobrinho"", ""Sobrinho"", NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, +NA, NA, NA, NA, NA))",province1,12,yes,village3,mabatisloping,706,33.48340708,no,2,no,yes,"Ponto geográfico + +Latitude: 0513522 +Longetude: 7910433 +Altitude: 732m","NA",no,na,"NA",-19.11222682,list(),"NA",yes,11 +1,yes,ward2,no,yes,25,NA,list(),"NA",uuid:77335b2e-8812-4a35-b1e5-ca9ab626dfea,no,"NA","NA",yes,1,"NA",muddaub,2,list(),NULL,NA,3,NA,NA,2017-05-04T10:46:35.000Z,no,NA,1,NULL,district1,earth,list(),2017-05-04,no,2017-05-04T10:26:35.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 3, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""other"", D06_mnth_harvest = ""June"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = ""Pertence aos pais da UD"", D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 25, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = ""Comprou aves"", F03_year = 2016, F02_source_income = ""Renda proveniente de produção agrícola"")",1,none,5,no,NA,"c(""radio"", ""solar_torch"", ""mobile_phone"")",NA,yes,"c(""Oct"", ""Nov"", ""Dec"")",6,yes,1,NULL,NA,118,"list(B06_memb_education = c(""pri_6"", ""pri_3"", ""pri_1"", ""none"", ""pri_2""), B05_memb_age = c(32, 45, 8, 2, 10), B02_memb_gender = c(""female"", ""male"", ""male"", ""female"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""head"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na""), + B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,9,NA,village3,grass,713,33.48344178,NA,"NA",NA,no,"Ponto geográfico +Latitude: 0512620 +Longetude: 7912705 +Altitude: 708","NA",no,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""borrow_food"", ""lab_ex_food"")","NA",-19.11220573,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""no"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,5 +1,no,ward2,yes,yes,14,3,"list(F11_no_owned = c(1, 1), F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:02b05c68-302e-4e7a-b229-81cb1377fd29,yes,"NA","NA",no,3,"NA",burntbricks,1,list(),"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")","Compra vestuários, mobiliário e produtos de alimentação e de higiene.",3,yes,no,2017-05-04T11:16:05.000Z,no,yes,3,NULL,district1,earth,"list(E12_apply_water = c(NA, NA, ""furrows""), E08_crops = list(NULL, NULL, c(""tomatoes"", ""onion"", ""vegetable"", ""pepino"")), E09_irr_manager = list(NULL, NULL, ""parent""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, NA, ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""no"", ""yes""), E14_access = c(NA, NA, ""allocated_cus_aut""), E11_water_fields = c(NA, NA, ""canal_gravity""), E10_water_source = c(NA, +NA, ""river""), E06_plot_no = 1:3)",2017-05-04,no,2017-05-04T10:47:05.000Z,"list(D04_crops_harvsted = list(""maize"", ""beans"", c(""tomatoes"", ""onion"", ""vegetable"", ""cucumber"")), D01_curr_plot = 1:3, D02_total_plot = c(1, 0.5, 3.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""4""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""yes"", D21_cost_labour = 300, D17_cost_seed = NA, D12_harvst_amount = 3, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""child""), D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 2500, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", + D21_cost_labour = 100, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""parent""), D10_who_own = ""du"", D06_mnth_harvest = ""Sept"", D08_land_planted = 1.5, D11_harvst_unit = ""crates"", + D19_pesticide_other = NA, D25_price = 250, D19_pesticide = ""required_buyer"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 180, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 600, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 3600, D17_cost_seed = NA, D12_harvst_amount = 180, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 400), list(D26_who_sell_harv = list(""parent""), D10_who_own = ""du"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = ""required_buyer"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 15, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 600, + D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 375, D17_cost_seed = NA, D12_harvst_amount = 15, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 400), list(D26_who_sell_harv = list(""parent""), D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, + D19_pesticide = ""required_buyer"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 25, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 600, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 25, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""paid_fertilizer""), D14_cost_fert = 400), list(D26_who_sell_harv = list(""parent""), D10_who_own = ""du"", D06_mnth_harvest = ""Sept"", D08_land_planted = 1.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 120, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 30, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 300, + D17_cost_seed = NA, D12_harvst_amount = 30, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 400)), D_curr_crop = c(""tomatoes"", ""onion"", ""vegetable"", ""cucumber""), D_repeat_times_count = c(""1"", ""1"", ""1"", ""1""), D05_times = c(1, 1, 1, 1))), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou animais"", ""Comprou charua""), F03_year = 2014:2015, F02_source_income = c(""Renda proveniente da agricultura irrigada"", ""Renda proveniente de agricultura irrigada""))",2,"c(""oxen"", ""cows"")",5,yes,more_once,"c(""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""mobile_phone"")",less_half,no,"c(""Jan"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")",7,yes,NA,less_work,NA,125,"list(B06_memb_education = c(""pri_7"", ""pri_7"", ""pri_3"", ""pri_1"", ""na""), B05_memb_age = c(27, 30, 10, 7, 4), B02_memb_gender = c(""male"", ""male"", ""female"", ""male"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(c(""housework"", ""comm_farming""), ""comm_farming"", ""na"", ""na"", + ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(c(""housework"", ""small_scale_farm"", ""comm_farming""), c(""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,11,yes,village3,mabatisloping,682,33.4834101,no,3,no,no,"Ponto geográfico + +Latitude: 0512182 +Longetude: 7909708 +Altitude: 710.3m","NA",yes,"c(""borrow_food"", ""lab_ex_food"")","NA",-19.11218005,list(),"NA",yes,5 +1,no,ward2,yes,no,14,2,"list(F11_no_owned = c(1, 1, 1, 20), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""poultry""))","NA",uuid:fa201fce-4e94-44b8-b435-c558c2e1ed55,no,"NA","NA",no,2,"NA",muddaub,4,"list(B13_remitter_location_village = ""Tete"", B15_remitter_location_region_other = NA, B15_remitter_location_region = ""tete"", B14_remitter_location_district = ""Muatize"", B12_remittance_money_type = ""Guarda"")",NULL,"Compra vestuário; +Paga despesas escolares +Compra produtos alimentares e de higiene",3,no,no,2017-05-04T11:38:38.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""maize"", ""sweetpotato"")), E09_irr_manager = list(NULL, ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""purchased""), E11_water_fields = c(NA, ""bucket""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-05-04,yes,2017-05-04T11:16:57.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""potatoes""), ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(2, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""2"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Mar"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.2, + D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 7, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", + D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""potatoes""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Mar"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, + D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Construiu sua habitação"", ""Comprou bicicleta"", ""Comprou telemóvel""), F03_year = c(2009, 2014, 2016), F02_source_income = c(""Renda da agricultura irrigada"", ""Renda da agricultura irrigada"", ""Renda da agricultura irrigada""))",4,"c(""oxen"", ""cows"", ""goats"", ""poultry"")",3,no,never,"c(""bicycle"", ""cow_plough"", ""solar_panel"", ""mobile_phone"")",more_half,yes,none,14,no,NA,NULL,NA,119,"list(B06_memb_education = c(""pri_6"", ""pri_2"", ""pri_2""), B05_memb_age = c(40, 69, 16), B02_memb_gender = c(""female"", ""male"", ""male""), B04_memb_marital_status = c(""widow/er"", ""widow/er"", ""single""), B03_relationship_du = c(""head"", ""parent"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm""), B09_interviewee_main_activities_other = c(NA, NA, NA), B_memb_no = 1:3, B08_interviewee_activities = list( + ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm""), B03_relationship_du_other = c(NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA))",province1,5,yes,village3b,grass,706,33.48334839,no,3,no,no,"Ponto geográfico + +Latitude: 0513180 +Longetude: 7912422 +Altitude: 714m","NA",no,na,"NA",-19.11225658,list(),"NA",no,3 +2,no,ward2,no,yes,16,NA,"list(F11_no_owned = c(1, 3, 5), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:628fe23d-188f-43e4-a203-a4bf3257d461,no,"NA","NA",yes,2,"NA",sunbricks,3,list(),NULL,NA,3,NA,NA,2017-05-11T05:41:56.000Z,no,NA,2,NULL,district1,cement,list(),2017-05-11,no,2017-05-11T05:24:25.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(8, 3), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 8, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 24, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 750, D17_cost_seed = NA, D12_harvst_amount = 30, D16_imprv_seed = ""no"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 16, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Comprou motorizada;\nComprou aparelhagem sonora;\nConstruiu sua casa.""), F03_year = 2015:2016, F02_source_income = c(""Renda proveniente da agricultura em sequeiro"", ""Renda proveniente de agricultura""))",3,"c(""oxen"", ""cows"", ""goats"")",4,no,NA,"c(""cow_cart"", ""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",NA,yes,none,16,no,2,NULL,NA,115,"list(B06_memb_education = c(""sec_2"", ""pri_7"", ""na"", ""na""), B05_memb_age = c(27, 23, 4, 2), B02_memb_gender = c(""male"", ""female"", ""male"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA), + B_memb_no = 1:4, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA))",province1,20,NA,village3a,mabatisloping,0,33.4761047,NA,"NA",NA,yes,"Ponto geográfico + +Latitude: 0512956 +Longetude: 7912742 +Altitude: 712m","NA",no,na,"NA",-19.1114691,"list(E04_res_water_field = c(""land_far"", ""land_far""), E03_crops = list(""maize"", ""maize""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""yes_no_land_chied"", ""yes_no_land_chied""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",yes,4 +2,no,ward2,yes,yes,22,3,"list(F11_no_owned = c(3, 5, 4, 40), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""poultry""))","NA",uuid:e4f4d6ba-e698-45a5-947f-ba6da88cc22b,yes,"NA","NA",yes,3,"NA",burntbricks,3,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra produtos alimentares, produtos de higiene etc.",3,yes,no,2017-05-11T06:08:58.000Z,no,no,3,NULL,district1,cement,"list(E12_apply_water = c(NA, NA, ""furrows""), E08_crops = list(NULL, NULL, ""vegetable""), E09_irr_manager = list(NULL, NULL, ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, NA, ""far""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""no"", ""yes""), E14_access = c(NA, NA, ""purchased""), E11_water_fields = c(NA, NA, ""canal_gravity""), E10_water_source = c(NA, NA, ""river""), E06_plot_no = 1:3)",2017-05-11,no,2017-05-11T05:42:08.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""sorghum""), ""maize"", ""vegetable""), D01_curr_plot = 1:3, D02_total_plot = c(2, 2, 1.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""2"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = NA, D10_who_own = ""du"", + D06_mnth_harvest = ""July"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, + D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""sorghum""), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", + D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list( + ""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Sept"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 3, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 1, D16_imprv_seed = ""no"", D23_where_sold = list( + ""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino e caprino"", ""Construiu sua casa"", ""Abriu um poço"", ""Comprou bicicleta e 2 charuas de tracção animal"", ""Comprou uma caroca de tracção aninal""), F03_year = c(2001, 2004, 2008, 2010, 2012), F02_source_income = c(""Renda proveniente da agricultura"", ""Renda proveniente da agricultura"", ""Renda proveniente da agricultura"", ""Renda proveniente da agricultura"", ""Renda proveniente de agricultura""))",4,"c(""oxen"", ""cows"", ""goats"", ""poultry"")",15,no,never,"c(""cow_cart"", ""bicycle"", ""radio"", ""cow_plough"", ""solar_panel"", ""table"", ""mobile_phone"")",abt_half,no,"c(""Aug"", ""Sept"", ""Oct"", ""Nov"")",22,no,NA,NULL,NA,108,"list(B06_memb_education = c(""pri_6"", ""pri_3"", ""sec_4"", ""sec_3"", ""sec_4"", ""pri_6"", ""pri_5"", ""pri_4"", ""pri_3"", ""pri_1"", ""na"", ""na"", ""pri_5"", ""sec_1"", ""na""), B05_memb_age = c(54, 34, 20, 18, 17, 15, 13, 11, 9, 6, 4, 1, 12, 16, 1), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male"", ""male"", ""female"", ""male"", ""female"", ""female"", ""male"", ""female"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", +""single"", ""single"", ""single"", ""single"", ""unmarried"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Grandchild"", ""other"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Holidays"", ""Holidays"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""artisan"", + ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", c(""housework"", ""small_scale_farm""), ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:15, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""artisan"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", c(""housework"", ""small_scale_farm""), ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, ""Nora"", +NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,20,yes,village2,mabatisloping,0,33.4761047,no,16,no,yes,"Ponto geográfico + +Latitude: 18°55'4.87711""S +Longetude: 33°6'5.078774""E +Altitude: 684m","NA",no,"c(""rely_less_food"", ""limit_portion"", ""reduce_meals"")","NA",-19.1114691,list(),"NA",no,15 +3,no,ward2,no,no,25,NA,"list(F11_no_owned = c(1, 2, 1), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:cfee6297-2c0e-4f8a-94cc-9aaee0bd64cb,no,"NA","NA",yes,1,"NA",burntbricks,2,list(),NULL,NA,3,NA,NA,2017-05-11T06:22:19.000Z,no,NA,1,NULL,district1,cement,list(),2017-05-11,no,2017-05-11T06:09:56.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 5, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 15, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Construiu sua casa melhorada""), F03_year = c(2002, 2012), F02_source_income = c(""Renda proveniente de agricultura"", ""Renda proveniente de agricultura""))",3,"c(""oxen"", ""cows"", ""goats"")",5,no,NA,"c(""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",NA,no,"c(""Jan"", ""Nov"", ""Dec"")",21,yes,1,NULL,NA,116,"list(B06_memb_education = c(""none"", ""sec_3"", ""sec_2"", ""sec_1"", ""pri_5""), B05_memb_age = c(48, 22, 18, 16, 17), B02_memb_gender = c(""female"", ""male"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""widow/er"", ""unmarried"", ""single"", ""single"", ""unmarried""), B03_relationship_du = c(""head"", ""Child"", ""Child"", ""Child"", ""other""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Occasional"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", + ""na"", ""small_scale_farm""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA), B_memb_no = 1:5, B08_interviewee_activities = list(""small_business"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""small_scale_farm""), B03_relationship_du_other = c(NA, NA, NA, NA, ""Nora""), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA))",province1,20,NA,village3b,grass,0,33.4761047,NA,"NA",NA,yes,"Ponto geográfico + +Latitude: 0512957 +Longitude: 7912744 +Altitude: 714m","NA",yes,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""lab_ex_food"")","NA",-19.1114691,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,5 +4,yes,ward2,no,yes,28,NA,list(),"NA",uuid:3fe626b3-c794-48e1-a80f-5bfe440c507b,no,"NA","NA",yes,1,"NA",muddaub,1,list(),NULL,NA,3,NA,NA,2017-05-11T06:55:35.000Z,no,NA,1,NULL,district1,cement,list(),2017-05-11,no,2017-05-11T06:28:02.000Z,"list(D04_crops_harvsted = list(""maize""), D01_curr_plot = 1, D02_total_plot = 12, D03_unit_land = ""hactare"", D_crops_count = ""1"", D04_crops_harvsted_other = NA, D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = NA, D06_mnth_harvest = ""June"", D08_land_planted = 12, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, + D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 3000, D12_harvst_amount = 48, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""shared"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = NA)","list(F01_item = c(""Comprou bicicleta"", ""Comprou aparelhagem sonora"", ""Construiu a sua banca"", ""Comprou uma motorizada""), F03_year = c(2005, 2007, 2012, 2014), F02_source_income = c(""Renda proveniente de pequenos negócios"", ""Renda proveniente de pequenos negócios"", ""Renda proveniente de pequenos negócios"", ""Renda proveniente de pequenos negócios""))",1,none,10,no,NA,"c(""motorcyle"", ""television"", ""radio"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",NA,yes,"c(""Jan"", ""Feb"", ""Nov"", ""Dec"")",1,yes,1,NULL,NA,117,"list(B06_memb_education = c(""pri_7"", ""pri_4"", ""pri_4"", ""pri_5"", ""pri_5"", ""pri_1"", ""na"", ""na"", ""na"", ""na""), B05_memb_age = c(28, 22, 22, 21, 20, 7, 6, 6, 3, 3), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female"", ""female"", ""female"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""unmarried"", ""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Spouse"", ""Spouse"", ""Spouse"", ""Child"", +""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", +""small_scale_farm""), c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,20,NA,village3b,grass,0,33.4761047,NA,"NA",NA,no,"Ponto geográfico + +Latitude: 0513163 +Longitude: 7912749 +Altitude: 723m","NA",no,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""restrict_adults"", ""borrow_food"", ""lab_ex_food"")","NA",-19.1114691,"list(E04_res_water_field = ""land_far"", E03_crops = list(""maize""), E04_res_water_field_other = NA, E05_tried_access = ""yes_no_land_chied"", E05_tried_access_other = NA, E02_plot_no = 1)","NA",no,10 +4,yes,ward2,yes,yes,5,2,"list(F11_no_owned = c(4, 4, 4, 1), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""sheep""))","NA",uuid:0670cef6-d233-4852-89d8-36955261b0a3,yes,"NA","NA",yes,2,"NA",burntbricks,3,list(),"c(""Sept"", ""Oct"", ""Nov"")","Paga despesas da casa +Compra de vestuários +Compra produtos de higiene +Compra produtos alimentares",2,yes,yes,2017-05-18T05:02:38.000Z,no,no,2,farming,district1,cement,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, ""spouse""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""far""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""purchased""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-05-18,no,2017-05-18T04:36:23.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(6, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""May"", D08_land_planted = 6, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""spouse_du_free"", D06_mnth_harvest = ""Aug"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 200, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 42, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 180, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = NA, D17_cost_seed = NA, + D12_harvst_amount = 42, D16_imprv_seed = ""no"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 4800)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Construiu a sua casa"", ""Comprou gado bovino e caprino""), F03_year = c(2013, 2008), F02_source_income = c(""Renda proveniente de agricultura irrigada"", ""Renda proveniente da agricultura irrigada""))",4,"c(""oxen"", ""cows"", ""goats"", ""sheep"")",7,no,frequently,"c(""cow_cart"", ""television"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",abt_half,yes,none,5,no,NA,NULL,NA,144,"list(B06_memb_education = c(""sec_3"", ""adl_literacy"", ""pri_6"", ""na"", ""sec_2"", ""pri_7"", ""pri_6""), B05_memb_age = c(21, 45, 25, 5, 16, 16, 18), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""widow/er"", ""unmarried"", ""single"", ""unmarried"", ""single"", ""single""), B03_relationship_du = c(""Child"", ""head"", ""Child"", ""Grandchild"", ""other"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", +""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""salar_job"", ""na"", c(""housework"", ""small_scale_farm""), ""small_business"", ""small_business""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""salar_job"", ""na"", c(""housework"", ""small_scale_farm""), ""small_business"", ""small_business""), B03_relationship_du_other = c(NA, NA, NA, NA, ""Nora"", NA, +NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,5,yes,village3,mabatisloping,710,33.48342233,no,5,yes,no,"Ponto geográfico + +Latitude: 0513357 +Longetude: 7910070 +Altitude: 737.7m","NA",no,na,"NA",-19.11218801,list(),"NA",no,7 +2,no,ward2,yes,no,24,3,"list(F11_no_owned = c(4, 8, 3), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:9a096a12-b335-468c-b3cc-1191180d62de,no,"NA","NA",yes,3,"NA",burntbricks,3,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra os seguinte: +Alimentação; +Vestuarios; +Paga transporte; +Produtos de higiene;",3,yes,no,2017-05-18T06:37:10.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, NA, ""furrows""), E08_crops = list(NULL, NULL, c(""beans"", ""tomatoes"", ""piri_piri"")), E09_irr_manager = list(NULL, NULL, c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, NA, ""near""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""no"", ""yes""), E14_access = c(NA, NA, ""allocated_irr_ass""), E11_water_fields = c(NA, NA, ""canal_gravity""), E10_water_source = c(NA, +NA, ""river""), E06_plot_no = 1:3)",2017-05-18,no,2017-05-18T05:55:04.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize"", c(""beans"", ""tomatoes"", ""piri_piri"")), D01_curr_plot = 1:3, D02_total_plot = c(4, 4, 5.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""3""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, + D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, + D25_price = NA, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 770, D22_sell = ""no"", D20_paid_labour = ""yes"", D21_cost_labour = 1000, D17_cost_seed = 1200, D12_harvst_amount = 1, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""paid_fertilizer""), D14_cost_fert = 3200), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Sept"", D08_land_planted = 2, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 900, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 501, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 3900, D22_sell = ""yes"", D20_paid_labour = ""yes"", + D21_cost_labour = 8200, D17_cost_seed = 2400, D12_harvst_amount = 501, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 11200), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Jan"", D08_land_planted = 1, D11_harvst_unit = ""kg"", D19_pesticide_other = NA, D25_price = 50, D19_pesticide = ""required_buyer"", + D07_ploughing_typ = ""ox"", D24_amnt_sold = 200, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 340, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 200, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), + D_curr_crop = c(""beans"", ""tomatoes"", ""piri_piri""), D_repeat_times_count = c(""1"", ""1"", ""1""), D05_times = c(1, 1, 1))), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou cabeças de gado bovino"", ""Comprou uma motorizada"", ""Construiu sua casa de habitação""), F03_year = c(2004, 2010, 2005), F02_source_income = c(""Renda proveniente de agricultura irrigada"", ""Renda proveniente da agricultura irrigada"", ""Renda proveniente da agricultura irrigada""))",3,"c(""oxen"", ""cows"", ""goats"")",10,no,frequently,"c(""cow_cart"", ""motorcyle"", ""television"", ""radio"", ""cow_plough"", ""solar_torch"", ""table"", ""mobile_phone"")",more_half,yes,"c(""Jan"", ""Dec"")",24,no,NA,NULL,NA,143,"list(B06_memb_education = c(""pri_4"", ""none"", ""pri_2"", ""pri_2"", ""pri_2"", ""sec_3"", ""sec_1"", ""sec_1"", ""pri_5"", ""pri_6""), B05_memb_age = c(38, 58, 29, 30, 30, 17, 14, 13, 11, 12), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female"", ""female"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""widow/er"", ""unmarried"", ""unmarried"", ""unmarried"", ""unmarried"", ""unmarried"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""parent"", ""Spouse"", ""Spouse"", +""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Occasional"", ""Occasional"", ""Occasional"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list( + ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", c(""housework"", ""small_scale_farm""), c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,1911,yes,village3,grass,0,33.4763322,no,12,no,yes,"Ponto geográfico + +Latitude: 0513751 +Longetude: 7908694 +Altitude: 764m","NA",yes,"c(""rely_less_food"", ""limit_variety"")","NA",-19.1124845,list(),"NA",yes,10 +1,no,ward2,yes,yes,8,2,"list(F11_no_owned = 1, F_curr_liv = ""cows"")","NA",uuid:92613d0d-e7b1-4d62-8ea4-451d7cd0a982,yes,"NA","NA",no,2,"NA",muddaub,2,list(),"c(""Apr"", ""May"", ""June"", ""July"", ""Aug"", ""Sept"", ""Oct"", ""Nov"")","Pagamento das despesas escolares +Comora de produtos alimentares e de higiene",3,yes,no,2017-05-18T10:56:00.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""flood""), E08_crops = list(NULL, ""other""), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, ""Inhame""), E13_plot_loc = c(NA, ""middle""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-05-18,no,2017-05-18T10:37:37.000Z,"list(D04_crops_harvsted = list(""maize"", ""other""), D01_curr_plot = 1:2, D02_total_plot = c(2, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, ""Inhame""), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 5, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 4, D16_imprv_seed = ""no"", + D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""other"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Compra de alimentação"", F03_year = 2006, F02_source_income = ""Pequenos buscatos"")",1,cows,7,yes,never,mobile_phone,less_half,no,"c(""Sept"", ""Oct"", ""Nov"")",8,yes,NA,NULL,NA,150,"list(B06_memb_education = c(""sec_2"", ""none"", ""pri_7"", ""pri_5"", ""pri_1"", ""na"", ""na""), B05_memb_age = c(41, 30, 16, 14, 7, 4, 2), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), + B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,17,yes,village3,grass,709,33.47618369,no,8,no,no,"Ponto geográfico + +Latitude: 0512603 +Longetude: 7910068 +Altitude: 724.9m","NA",no,"c(""reduce_meals"", ""lab_ex_food"")","NA",-19.11147739,list(),"NA",no,7 +1,yes,ward2,yes,no,24,2,list(),"NA",uuid:37577f91-d665-443e-8d70-b914954cef4b,no,"NA","NA",no,2,"NA",sunbricks,2,list(),NULL,Compra produtos de primeira necessidade,3,no,no,2017-05-18T11:07:35.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(""flood"", NA), E08_crops = list(""maize"", NULL), E09_irr_manager = list(""du_head"", NULL), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(""near"", NA), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""yes"", ""no""), E14_access = c(""inherited"", NA), E11_water_fields = c(""canal_gravity"", NA), E10_water_source = c(""rain_flood"", NA), E06_plot_no = 1:2)",2017-05-18,no,2017-05-18T10:56:16.000Z,"list(D04_crops_harvsted = list(""maize"", ""sorghum""), D01_curr_plot = 1:2, D02_total_plot = c(2.5, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 2.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 40, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), + list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 0.5, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, + D12_harvst_amount = 1, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""sorghum"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Construiu sua casa"", F03_year = 2006, F02_source_income = ""Renda proveniente de arrendamento de machambas"")",1,none,4,no,never,"c(""radio"", ""solar_panel"", ""solar_torch"")",less_half,yes,"c(""Sept"", ""Oct"", ""Nov"")",17,yes,NA,NULL,NA,159,"list(B06_memb_education = c(""pri_5"", ""pri_6"", ""na"", ""na""), B05_memb_age = c(24, 20, 1, 3), B02_memb_gender = c(""male"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, +NA, NA, NA), B_memb_no = 1:4, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA))",province1,28,yes,village2,grass,712,33.47617506,no,2,no,no,"Ponto geográfico + +Latitude: 0510189 +Longetude: 7907503 +Altitude: 677m","NA",yes,lab_ex_food,"NA",-19.11149498,list(),"NA",no,4 +2,yes,ward2,yes,yes,13,3,"list(F11_no_owned = 1:2, F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:f22831ec-6bc3-4b73-9197-4b01e01abb66,yes,"NA","NA",yes,3,"NA",burntbricks,2,list(),"c(""Jan"", ""Dec"")","Compra de produtos de higiene, alimentação e alguns bens e animais para criação",2,yes,no,2017-06-03T05:32:19.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, NA, ""furrows""), E08_crops = list(NULL, NULL, ""tomatoes""), E09_irr_manager = list(NULL, NULL, ""du_head""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, NA, ""far""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""no"", ""yes""), E14_access = c(NA, NA, ""inherited""), E11_water_fields = c(NA, NA, ""canal_gravity""), E10_water_source = c(NA, NA, ""river""), E06_plot_no = 1:3)",2017-06-03,no,2017-06-03T05:08:49.000Z,"list(D04_crops_harvsted = list(""maize"", ""beans"", ""tomatoes""), D01_curr_plot = 1:3, D02_total_plot = c(2, 2, 1.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 750, D12_harvst_amount = 18, D16_imprv_seed = ""yes"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 2500, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 12, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = 120, D12_harvst_amount = 13, D16_imprv_seed = ""yes"", D23_where_sold = list(""visiting_traders""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Feb"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, + D25_price = 800, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 10, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""none""), D14_cost_fert = NA)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = ""Construção da sua casa"", F03_year = 2015, F02_source_income = ""Renda proveniente da agricultura"")",2,"c(""oxen"", ""cows"")",7,no,frequently,"c(""cow_cart"", ""cow_plough"", ""solar_torch"", ""mobile_phone"")",more_half,yes,Nov,3,yes,NA,NULL,yes,160,"list(B06_memb_education = c(""none"", ""none"", ""pri_6"", ""pri_3"", ""pri_2"", ""none"", ""none""), B05_memb_age = c(46, 30, 13, 12, 8, 5, 2), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Occasional"", ""Always"", ""Always"" +), B09_interviewee_main_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,12,yes,village2,mabatisloping,711,33.4834495,yes,3,no,no,"Pontos Geograficos + +Latitude: 0510016 +Longetude: 7907498 +Altitude: 656m","NA",yes,lab_ex_food,"NA",-19.11218456,list(),"NA",yes,7 +1,no,ward2,yes,no,14,2,"list(F11_no_owned = c(4, 3, 4), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:62f3f7af-f0f3-4f88-b9e0-acf8baa49ae4,no,"NA","NA",yes,2,"NA",burntbricks,1,list(),"c(""Aug"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")","Compra de produtos alimentares e de higiene +Pagamento de despesas escolares +Ajuda a comprar produtos para o seu negocio",3,yes,no,2017-06-03T05:51:49.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""beans""), E09_irr_manager = list(NULL, ""other_non_rel""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""middle""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-06-03,no,2017-06-03T05:32:33.000Z,"list(D04_crops_harvsted = list(""maize"", ""beans""), D01_curr_plot = 1:2, D02_total_plot = c(1, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""parent""), D10_who_own = ""du"", D06_mnth_harvest = ""Oct"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 2500, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 3, + D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""beans"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou cabecas de gado"", ""Comprou um congelador""), F03_year = c(2006, 2010), F02_source_income = c(""Renda proveniente de agricultura"", ""Renda proveniente da produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",9,no,never,"c(""cow_cart"", ""motorcyle"", ""bicycle"", ""television"", ""radio"", ""cow_plough"", ""solar_torch"", ""electricity"", ""table"", ""sofa_set"", ""mobile_phone"", ""fridge"")",less_half,no,none,14,no,NA,NULL,NA,165,"list(B06_memb_education = c(""sec_2"", ""pri_7"", ""sec_2"", ""sec_3"", ""sec_1"", ""pri_6"", ""pri_3"", ""pri_2"", ""na""), B05_memb_age = c(50, 41, 23, 17, 15, 13, 11, 7, 3), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""female"", ""male"", ""male"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", +""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""salar_job"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:9, B08_interviewee_activities = list(""salar_job"", c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, +NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,9,yes,village3,grass,708,33.48346513,no,10,no,yes,"O entrevistado vive na vila de Messica, em ruaca tem apenas as machambas e trabalhadores. + +Ponto geográfico + +Latitude: 0514373 +Longetude: 7911644 +Altitude: 756.4m","NA",no,na,"NA",-19.11217437,list(),"NA",no,9 +1,yes,ward2,yes,yes,16,3,"list(F11_no_owned = 2, F_curr_liv = ""goats"")","NA",uuid:40aac732-94df-496c-97ba-5b67f59bcc7a,yes,"NA","NA",yes,3,"NA",muddaub,2,list(),"c(""Aug"", ""Sept"", ""Oct"")","Compra produtos alimentares e de higiene +Compra vestuário e mobiliário",2,yes,no,2017-06-03T06:25:06.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(""furrows"", NA, NA), E08_crops = list(""tomatoes"", NULL, NULL), E09_irr_manager = list(""child"", NULL, NULL), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(""near"", NA, NA), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""yes"", ""no"", ""no""), E14_access = c(""inherited"", NA, NA), E11_water_fields = c(""canal_gravity"", NA, NA), E10_water_source = c(""river"", NA, NA), E06_plot_no = 1:3)",2017-06-03,no,2017-06-03T05:53:28.000Z,"list(D04_crops_harvsted = list(""tomatoes"", ""maize"", ""maize""), D01_curr_plot = 1:3, D02_total_plot = c(0.5, 1, 2), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""other_rel""), D10_who_own = ""other"", D06_mnth_harvest = ""Feb"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 250, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", + D24_amnt_sold = 16, D10_who_own_other = ""Família"", D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 16, D16_imprv_seed = ""no"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""tomatoes"", + D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""other_non_rel""), D10_who_own = ""other"", D06_mnth_harvest = ""June"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 3, D10_who_own_other = ""Pertence ao filho"", D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", + D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 17, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""other_non_rel""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 2, + D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 17, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou animais"", ""Comprou bicicleta""), F03_year = c(2015, 2015), F02_source_income = c(""Renda proveniente de venda de milho"", ""Renda proveniente da venda de tomate""))",1,goats,11,no,never,"c(""bicycle"", ""solar_torch"", ""mobile_phone"")",less_half,yes,"c(""Feb"", ""Mar"")",16,yes,NA,NULL,NA,166,"list(B06_memb_education = c(""pri_6"", ""none"", ""pri_4"", ""pri_4"", ""pri_7"", ""pri_7"", ""pri_2"", ""pri_2"", ""na"", ""na"", ""na""), B05_memb_age = c(18, 50, 61, 22, 15, 18, 10, 8, 4, 2, 1), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""male"", ""female"", ""female"", ""male"", ""male"", ""male"", ""male""), B04_memb_marital_status = c(""single"", ""married"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Child"", ""head"", ""other"", ""Child"", ""Child"", +""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Occasional"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = c(1, +2, 3, 4, 5, 6, 9, 8, 9, 10, 11), B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, ""Esposo"", NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,1799.999,yes,village3,grass,0,33.4826653,no,2,no,no,"A chefe destacasa e a mulher o seu marido é poligamo, em outra casa com outra mulher numa outra zona fora de Ruaca. Ele tem vindo as vezes enquanto a esta casa. O filho mais velho desta casa produz tomate. A mae e a filha mais velha dedicam se na produção","NA",no,"c(""go_forest"", ""lab_ex_food"")","NA",-19.1138589,list(),"NA",no,11 +1,yes,ward2,yes,no,24,2,"list(F11_no_owned = c(1, 1, 8), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:a9d1a013-043b-475d-a71b-77ed80abe970,no,"NA","NA",yes,2,"NA",muddaub,5,list(),"c(""July"", ""Aug"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")","Compra produtos de alimentação e produtos de higiene, mobiliário e pagamento de despesas escolares",2,yes,no,2017-06-03T06:45:06.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"", ""child"", ""parent"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""far""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-06-03,no,2017-06-03T06:25:09.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(1.5, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 8, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Sept"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 250, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 12, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 600, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 13, + D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Comprou cabeças de gado"", F03_year = 2014, F02_source_income = ""Renda proveniente da produção de tomate"")",3,"c(""oxen"", ""cows"", ""goats"")",8,yes,never,"c(""motorcyle"", ""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",less_half,yes,"c(""Jan"", ""Nov"", ""Dec"")",16,yes,NA,NULL,NA,167,"list(B06_memb_education = c(""sec_3"", ""none"", ""pri_2"", ""sec_2"", ""pri_7"", ""pri_7"", ""pri_5"", ""na""), B05_memb_age = c(28, 56, 61, 18, 20, 16, 12, 1), B02_memb_gender = c(""male"", ""female"", ""male"", ""female"", ""male"", ""female"", ""male"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Child"", ""Spouse"", ""head"", ""other"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, +NA, NA, ""Nora"", NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA))",province1,2000,yes,village3,grass,0,33.4882685,no,16,no,no,"Ponto geográfico + +Latitude: 18°54'10""S +Longetude: 33°8'36""E +Altitude: 845m","NA",no,lab_ex_food,"NA",-19.1149887,list(),"NA",no,8 +2,yes,ward2,yes,yes,25,3,"list(F11_no_owned = c(8, 9, 7), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:43ec6132-478c-4f87-878d-fb3c0c4d0c74,yes,"NA","NA",yes,3,"NA",burntbricks,2,list(),"c(""Sept"", ""Oct"", ""Nov"", ""Dec"")","Compra de produtos alimentares, de higiene, despesas de casa. +Compra de vestuário e mobiliário.",3,yes,no,2017-06-03T07:20:21.000Z,no,yes,3,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""tomatoes"", ""tomatoes""), E09_irr_manager = list(NULL, c(""du_head"", ""other""), c(""du_head"", ""other"")), E09_irr_manager_other = c(NA, ""Trabalhadores"", ""Trabalhadores""), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""far"", ""far""), E16_amount_pay = c(NA, 0, NA), E15_duration = c(NA, ""year"", NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""rented"", ""inherited""), E11_water_fields = c(NA, +""canal_gravity"", ""canal_gravity""), E10_water_source = c(NA, ""river"", ""river""), E06_plot_no = 1:3)",2017-06-03,no,2017-06-03T06:50:47.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""tomatoes""), D01_curr_plot = 1:3, D02_total_plot = c(7, 3, 1), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 7, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 20, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), + list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = NA, D06_mnth_harvest = ""Nov"", D08_land_planted = 1.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 200, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 2340, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = 1300, D12_harvst_amount = 200, D16_imprv_seed = ""yes"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""rentedin"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 5000)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", + D19_pesticide_other = NA, D25_price = 600, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 100, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 1870, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 620, D12_harvst_amount = 100, D16_imprv_seed = ""yes"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, + D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 2500)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou de uma camioneta (carro)"", ""Compra de uma camioneta (carro)"", ""Comora de uma motorizada""), F03_year = c(2014, 2016, 2011), F02_source_income = c(""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada""))",3,"c(""oxen"", ""cows"", ""goats"")",12,no,never,"c(""car"", ""lorry"", ""motorcyle"", ""radio"", ""sterio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""sofa_set"", ""mobile_phone"", ""fridge"")",more_half,yes,"c(""Jan"", ""Feb"", ""Dec"")",13,no,NA,cheaper,NA,174,"list(B06_memb_education = c(""none"", ""pri_7"", ""pri_5"", ""pri_2"", ""none"", ""na"", ""na"", ""na"", ""pri_7"", ""pri_2"", ""na"", ""na""), B05_memb_age = c(25, 30, 12, 8, 4, 2, 2, 1, 25, 8, 5, 1), B02_memb_gender = c(""female"", ""male"", ""female"", ""female"", ""female"", ""male"", ""female"", ""female"", ""female"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""unmarried"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", +""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Spouse"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""artisan"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""small_scale_farm"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:12, B08_interviewee_activities = list( + c(""housework"", ""small_scale_farm""), c(""small_scale_farm"", ""artisan""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,3,yes,village3,grass,703,33.48340539,no,13,no,yes,"Ponto geográfico + +Latitude: 051458 +Longetude: 791230 +Altitude:653m","NA",no,lab_ex_food,"NA",-19.11216751,list(),"NA",yes,12 +1,yes,ward2,yes,yes,36,2,"list(F11_no_owned = c(1, 2, 5, 15), F_curr_liv = c(""oxen"", ""cows"", ""goats"", ""poultry""))","NA",uuid:64fc743e-8176-40f6-8ae4-36ae97fac1d9,yes,"NA","NA",yes,2,"NA",burntbricks,2,list(),"c(""Oct"", ""Nov"")","Compra produtos alimentares, de higiene, utensílios domésticos, vestuário e despesas da casa",2,yes,no,2017-06-03T07:51:29.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, c(""tomatoes"", ""vegetable"")), E09_irr_manager = list(NULL, ""du_head""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""middle""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""inherited""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-06-03,no,2017-06-03T07:21:48.000Z,"list(D04_crops_harvsted = list(""maize"", c(""tomatoes"", ""vegetable"")), D01_curr_plot = 1:2, D02_total_plot = c(2, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""2""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 350, D12_harvst_amount = 10, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 500, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 100, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = 700, D12_harvst_amount = 100, D16_imprv_seed = ""yes"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600), list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Nov"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 500, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 3, + D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 200, D12_harvst_amount = 3, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 600)), D_curr_crop = c(""tomatoes"", ""vegetable"" +), D_repeat_times_count = c(""1"", ""1""), D05_times = c(1, 1))), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou canecas de boi, \nComprou motorizada"", ""Comprou chapas de cobertura da sua casa\nComprou 3 biscicletas"", ""Comprou machambas""), F03_year = c(2016, 2008, 2013), F02_source_income = c(""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada""))",4,"c(""oxen"", ""cows"", ""goats"", ""poultry"")",7,yes,never,"c(""motorcyle"", ""bicycle"", ""radio"", ""sterio"", ""cow_plough"", ""solar_panel"", ""table"", ""mobile_phone"")",more_half,yes,"c(""Jan"", ""Oct"", ""Nov"", ""Dec"")",11,no,NA,NULL,NA,175,"list(B06_memb_education = c(""pri_4"", ""pri_2"", ""pri_5"", ""pri_1"", ""pri_1"", ""pri_2"", ""na""), B05_memb_age = c(36, 27, 11, 8, 1, 6, 2), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male"", ""female"", ""female""), B04_memb_marital_status = c(""married"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), + B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA))",province1,5,yes,village3,mabatisloping,705,33.48336019,no,11,no,no,"Ponto geográfico + +Latitude: 0515370 +Longetude: 7911583 +Altitude: 790m","NA",no,na,"NA",-19.11217963,list(),"NA",no,7 +1,no,ward2,yes,yes,16,3,"list(F11_no_owned = c(2, 2, 7), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:c17e374c-280b-4e78-bf21-74a7c1c73492,yes,"NA","NA",yes,3,"NA",sunbricks,2,list(),"c(""Aug"", ""Sept"", ""Oct"", ""Nov"", ""Dec"")","Compra alimentação +Paga despesas escolares",3,yes,no,2017-06-03T15:53:10.000Z,no,no,3,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows"", ""furrows""), E08_crops = list(NULL, ""piri_piri"", ""baby_corn""), E09_irr_manager = list(NULL, ""du_head"", c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(NA, ""far"", ""far""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes""), E14_access = c(NA, ""purchased"", ""purchased""), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity"" +), E10_water_source = c(NA, ""river"", ""river""), E06_plot_no = 1:3)",2017-06-03,no,2017-06-03T15:23:01.000Z,"list(D04_crops_harvsted = list(""maize"", ""piri_piri"", ""baby_corn""), D01_curr_plot = 1:3, D02_total_plot = c(7, 3, 3), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""May"", D08_land_planted = 7, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 6, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), + list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""spouse_du_parts"", D06_mnth_harvest = ""Dec"", D08_land_planted = 3, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 315, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 280, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 280, D16_imprv_seed = ""no"", D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""piri_piri"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Aug"", D08_land_planted = 3, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, + D25_price = 75, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 40, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 40, D16_imprv_seed = ""no"", D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""none""), D14_cost_fert = NA)), D_curr_crop = ""baby_corn"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = ""Comprou bois"", F03_year = 2015, F02_source_income = ""Renda proveniente de agricultura irrigada"")",3,"c(""oxen"", ""cows"", ""goats"")",15,no,never,"c(""motorcyle"", ""radio"", ""sterio"", ""cow_plough"", ""solar_panel"", ""table"", ""mobile_phone"")",more_half,no,Nov,10,yes,NA,NULL,NA,189,"list(B06_memb_education = c(""pri_7"", ""pri_7"", ""pri_6"", ""pri_4"", ""pri_1"", ""na"", ""na"", ""pri_2"", ""pri_5"", ""na"", ""na"", ""pri_7"", ""pri_5"", ""pri_3"", ""na""), B05_memb_age = c(30, 34, 13, 10, 6, 4, 1, 7, 27, 2, 2, 14, 10, 9, 1), B02_memb_gender = c(""female"", ""male"", ""male"", ""male"", ""female"", ""female"", ""male"", ""male"", ""female"", ""female"", ""male"", ""female"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""unmarried"", +""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Grandchild"", ""Spouse"", ""Child"", ""Grandchild"", ""Child"", ""Grandchild"", ""Grandchild"", ""Grandchild""), B07_residence_status = c(""Always"", ""Always"", ""Holidays"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Holidays"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", + ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = c(1, 2, 3, 4, 5, 6, 7, 8, 9, 100, 11, 12, 13, 14, 15), B08_interviewee_activities = list(c(""housework"", ""small_scale_farm""), c(""small_scale_farm"", ""artisan""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, +NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,4,yes,village3,mabatisloping,714,33.48341529,no,7,no,yes,"Ponto geográfico + +Latitude: 0512661 +Longetude: 7902782 +Altitude: 685.3m","NA",yes,na,"NA",-19.11216796,list(),"NA",no,15 +4,yes,ward2,yes,no,5,2,"list(F11_no_owned = 2, F_curr_liv = ""cows"")","NA",uuid:dad53aff-b520-4015-a9e3-f5fdf9168fe1,no,"NA","NA",yes,2,"NA",burntbricks,1,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra de gado para criação +Compra de alimentação +Compra de produtos de higiene",2,yes,no,2017-06-03T16:17:26.000Z,yes,no,2,NULL,district1,cement,"list(E12_apply_water = c(""furrows"", NA), E08_crops = list(""tomatoes"", NULL), E09_irr_manager = list(""child"", NULL), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(""near"", NA), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""yes"", ""no""), E14_access = c(""inherited"", NA), E11_water_fields = c(""canal_gravity"", NA), E10_water_source = c(""river"", NA), E06_plot_no = 1:2)",2017-06-03,no,2017-06-03T15:54:03.000Z,"list(D04_crops_harvsted = list(""tomatoes"", ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(1, 5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Feb"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 250, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 10, + D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 600, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 300, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 10, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, + D17_cost_seed = NA, D12_harvst_amount = 12, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Construiu sua casa"", F03_year = 2013, F02_source_income = ""Renda proveniente de produção de tomate"")",1,cows,10,no,never,"c(""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""mobile_phone"")",abt_half,yes,"c(""Oct"", ""Nov"", ""Dec"")",3,no,NA,NULL,NA,191,"list(B06_memb_education = c(""na"", ""pri_5"", ""pri_5"", ""pri_5"", ""pri_5"", ""pri_3"", ""pri_5"", ""pri_2"", ""pri_2"", ""na""), B05_memb_age = c(46, 41, 19, 30, 27, 10, 11, 9, 7, 4), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""male"", ""female"", ""female"", ""female"", ""female"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", +""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:10, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm"" +), ""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,9,yes,village3,mabatisloping,709,33.48338051,no,3,no,yes,"Ponto geográfico + +Latitude: 13°54'20""S +Longetude: 33°8'35""E +Altitude: 841m","NA",no,"c(""go_forest"", ""lab_ex_food"")","NA",-19.11219207,list(),"NA",no,10 +1,yes,ward2,yes,yes,20,3,list(),"NA",uuid:f94409a6-e461-4e4c-a6fb-0072d3d58b00,yes,"NA","NA",yes,3,"NA",burntbricks,4,list(),"c(""Sept"", ""Nov"")","Compra produtos de alimentação +Compra de vestiários +Pagamento de despesas escolares",3,yes,no,2017-06-03T17:16:39.000Z,yes,no,3,NULL,district1,cement,"list(E12_apply_water = c(""furrows"", NA, ""furrows""), E08_crops = list(""tomatoes"", NULL, ""baby_corn""), E09_irr_manager = list(""other_non_rel"", NULL, ""other_non_rel""), E09_irr_manager_other = c(NA, NA, NA), E14_access_other = c(NA, NA, NA), E08_crops_other = c(NA, NA, NA), E13_plot_loc = c(""middle"", NA, ""middle""), E16_amount_pay = c(NA, NA, NA), E15_duration = c(NA, NA, NA), E07_bring = c(""yes"", ""no"", ""yes""), E14_access = c(""inherited"", NA, ""inherited""), E11_water_fields = c(""canal_gravity"", NA, ""canal_gravity"" +), E10_water_source = c(""river"", NA, ""river""), E06_plot_no = 1:3)",2017-06-03,no,2017-06-03T16:17:55.000Z,"list(D04_crops_harvsted = list(""tomatoes"", ""maize"", ""baby_corn""), D01_curr_plot = 1:3, D02_total_plot = c(0.5, 0.5, 0.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""du"", D06_mnth_harvest = ""Oct"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 400, D19_pesticide = ""own_choice"", + D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 76, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 600, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 125, D17_cost_seed = NA, D12_harvst_amount = 76, D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), + D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = NA, D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", + D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""rentedin"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, + D25_price = 75, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 10, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 18, D16_imprv_seed = ""no"", D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list( + ""none""), D14_cost_fert = NA)), D_curr_crop = ""baby_corn"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA, NA))","list(F01_item = c(""Comprou televisão"", ""Pagou despesas de casamento"", ""Construiu"", ""Comprou um rádio"", ""Comprou bicicleta""), F03_year = c(2016, 2006, 2007, 2014, 2015), F02_source_income = c(""Renda proveniete de produção de tomate"", ""Renda proveniente de tomate"", ""Renda proveniente de venda de babycorn"", ""Renda proveniente de venda de tomate"", ""Renda proveniente de venda de tomate""))",1,none,9,no,once,"c(""bicycle"", ""television"", ""radio"", ""sterio"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",more_half,yes,"c(""Jan"", ""Nov"", ""Dec"")",15,yes,NA,NULL,NA,192,"list(B06_memb_education = c(""pri_7"", ""sec_1"", ""pri_4"", ""pri_2"", ""pri_1"", ""na"", ""pri_3"", ""pri_7"", ""pri_6""), B05_memb_age = c(28, 20, 69, 9, 8, 1, 12, 17, 19), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""male"", ""male"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""widow/er"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""parent"", ""Child"", ""Child"", ""Child"", ""Grandchild"", ""Grandchild"", ""Grandchild"" +), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:9, B08_interviewee_activities = list(c(""small_scale_farm"", ""artisan""), c(""housework"", ""small_scale_farm""), ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", + ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA, NA))",province1,4,yes,village1,grass,705,33.48335905,no,5,no,no,"Ponto geográfico + +Latitude: 0512606 +Longetude: 7903109 +Altitude: 687.0m","NA",yes,borrow_food,"NA",-19.11215404,list(),"NA",yes,9 +1,yes,ward2,yes,yes,7,2,"list(F11_no_owned = c(2, 3, 2), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:69caea81-a4e5-4e8d-83cd-9c18d8e8d965,yes,"NA","NA",yes,2,"NA",burntbricks,1,list(),"c(""Sept"", ""Oct"", ""Nov"")","Compra produtos alimentares, +Compra produtos de higiene, +Compra vestuários",3,yes,no,2017-05-18T04:35:47.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, ""parent""), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""middle""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""allocated_cus_aut""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-05-18,no,2017-05-18T04:13:37.000Z,"list(D04_crops_harvsted = list(c(""maize"", ""beans"", ""peanut""), ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(4.5, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""3"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", + D24_amnt_sold = NA, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""yes"", D21_cost_labour = 1000, D17_cost_seed = NA, D12_harvst_amount = 8, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", + D06_mnth_harvest = ""Apr"", D08_land_planted = 1, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = 600, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 3, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 300, D17_cost_seed = NA, D12_harvst_amount = 3, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), + D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA), list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""tins"", D19_pesticide_other = NA, D25_price = 200, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 2, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, + D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 100, D17_cost_seed = NA, D12_harvst_amount = 2, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = c(""maize"", ""beans"", ""peanut""), D_repeat_times_count = c(""1"", ""1"", ""1""), D05_times = c(1, 1, 1)), list(D_repeat_times = list(list(D26_who_sell_harv = list( + ""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Feb"", D08_land_planted = 1, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 250, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 25, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 500, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 250, D17_cost_seed = NA, D12_harvst_amount = 25, + D16_imprv_seed = ""no"", D23_where_sold = list(""urban_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = ""Comprou uma motorizada"", F03_year = 2014, F02_source_income = ""Renda proveniente da agricultura irrigada"")",3,"c(""oxen"", ""cows"", ""goats"")",3,no,more_once,"c(""motorcyle"", ""radio"", ""solar_panel"")",less_half,yes,"c(""Oct"", ""Nov"", ""Dec"")",5,yes,NA,NULL,NA,126,"list(B06_memb_education = c(""pri_3"", ""pri_5"", ""pri_4""), B05_memb_age = c(35, 42, 12), B02_memb_gender = c(""female"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single""), B03_relationship_du = c(""Spouse"", ""head"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA), B_memb_no = 1:3, B08_interviewee_activities = list(""small_scale_farm"", + ""small_scale_farm"", ""na""), B03_relationship_du_other = c(NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA))",province1,7,yes,village3,grass,700,33.48337856,no,4,no,no,"Ponto geográfico + +Latitude: 0512603 +Longetude: 7910242 +Altitude: 726.4m","NA",yes,"c(""rely_less_food"", ""lab_ex_food"")","NA",-19.11219355,list(),"NA",yes,3 +3,no,ward2,yes,no,10,4,"list(F11_no_owned = c(5, 14, 10), F_curr_liv = c(""oxen"", ""cows"", ""goats""))","NA",uuid:5ccc2e5a-ea90-48b5-8542-69400d5334df,no,"NA","NA",no,4,"NA",cement,3,list(),"c(""Oct"", ""Nov"", ""Dec"")",Compra de produtos alimentares,3,yes,no,2017-06-04T10:13:32.000Z,yes,no,4,NULL,district1,cement,"list(E12_apply_water = c(NA, ""furrows"", ""furrows"", NA), E08_crops = list(NULL, ""tomatoes"", ""cabbage"", NULL), E09_irr_manager = list(NULL, ""other"", ""other"", NULL), E09_irr_manager_other = c(NA, ""Empregados"", ""Empregados"", NA), E14_access_other = c(NA, NA, NA, NA), E08_crops_other = c(NA, NA, NA, NA), E13_plot_loc = c(NA, ""near"", ""near"", NA), E16_amount_pay = c(NA, NA, NA, NA), E15_duration = c(NA, NA, NA, NA), E07_bring = c(""no"", ""yes"", ""yes"", ""no""), E14_access = c(NA, ""allocated_cus_aut"", ""allocated_cus_aut"", +NA), E11_water_fields = c(NA, ""canal_gravity"", ""canal_gravity"", NA), E10_water_source = c(NA, ""river"", ""river"", NA), E06_plot_no = 1:4)",2017-06-04,no,2017-06-04T09:36:20.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes"", ""cabbage"", ""maize""), D01_curr_plot = 1:4, D02_total_plot = c(3, 2.5, 0.5, 1.5), D03_unit_land = c(""hactare"", ""hactare"", ""hactare"", ""hactare""), D_crops_count = c(""1"", ""1"", ""1"", ""1""), D04_crops_harvsted_other = c(NA, NA, NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""June"", D08_land_planted = 3, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, + D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 3, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 2000, D17_cost_seed = NA, D12_harvst_amount = 10, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), + D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""Mar"", D08_land_planted = 2.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 400, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, + D18_cost_pestcd = 900, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 900, D12_harvst_amount = 400, D16_imprv_seed = ""yes"", D23_where_sold = list(""main_road""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", + D06_mnth_harvest = ""Nov"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 500, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 17, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 17, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), + D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""cabbage"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""du"", D06_mnth_harvest = ""July"", D08_land_planted = 1.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 2, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 7, D16_imprv_seed = ""no"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, +NA, NA, NA))","list(F01_item = c(""Comprou animais"", ""Pagamento de despesas da casa""), F03_year = c(2008, 2016), F02_source_income = c(""Produção Agrícola"", ""Produção agrícola""))",3,"c(""oxen"", ""cows"", ""goats"")",7,no,more_once,"c(""car"", ""lorry"", ""television"", ""radio"", ""sterio"", ""cow_plough"", ""solar_torch"", ""electricity"", ""table"", ""sofa_set"", ""mobile_phone"", ""fridge"")",more_half,no,none,10,yes,NA,NULL,NA,193,"list(B06_memb_education = c(""university"", ""sec_5"", ""sec_2"", ""sec_5"", ""sec_3"", ""sec_3"", ""pri_7""), B05_memb_age = c(51, 51, 14, 25, 16, 28, 18), B02_memb_gender = c(""male"", ""female"", ""female"", ""male"", ""male"", ""female"", ""male""), B04_memb_marital_status = c(""married"", ""married"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Occasional"", ""Occasional"", ""Holidays"", ""Holidays"", ""Holidays"", +""Holidays"", ""Holidays""), B09_interviewee_main_activities = list(""salar_job"", ""salar_job"", ""na"", ""salar_job"", ""na"", ""comm_farming"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(c(""comm_farming"", ""salar_job""), c(""comm_farming"", ""salar_job""), ""na"", ""salar_job"", ""na"", c(""housework"", ""comm_farming""), ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, +NA, NA))",province1,9,yes,village3,mabatisloping,720,33.48339039,no,10,no,yes,"O senhor Tome Florindo tem 2 canais de agua e 5 trabalhadores que vivem em Ruaca, sao esses que fazem trabalho enquanto ele esta a trabalhar como locutor na rádio Moçambique emissor provincial de Manica em Chimoio. + +Ponto geográfico + +Latitude: 18°53'54.9","NA",no,na,"NA",-19.11215668,list(),"NA",no,7 +1,yes,ward2,yes,no,5,2,"list(F11_no_owned = 5, F_curr_liv = ""poultry"")","NA",uuid:95c11a30-d44f-40c4-8ea8-ec34fca6bbbf,no,"NA","NA",no,2,"NA",muddaub,2,list(),"c(""Aug"", ""Sept"", ""Oct"")",Compra produtos alimentares e de higiene e ajuda nas despesas da casa,3,yes,no,2017-06-04T10:32:06.000Z,no,no,2,NULL,district1,earth,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""tomatoes""), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"", ""child"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""middle""), E16_amount_pay = c(NA, 3000), E15_duration = c(NA, ""year""), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""rented""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-06-04,no,2017-06-04T10:13:36.000Z,"list(D04_crops_harvsted = list(""maize"", ""tomatoes""), D01_curr_plot = 1:2, D02_total_plot = c(5, 0.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = NA, D10_who_own = ""du"", D06_mnth_harvest = ""Mar"", D08_land_planted = 4, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = NA, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = NA, D10_who_own_other = NA, + D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""no"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = NA, D12_harvst_amount = 17, D16_imprv_seed = ""no"", D23_where_sold = NA, D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1), list(D_repeat_times = list( + list(D26_who_sell_harv = list(c(""du_head"", ""spouse"")), D10_who_own = NA, D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""crates"", D19_pesticide_other = NA, D25_price = 500, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""ox"", D24_amnt_sold = 2400, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""no"", D21_cost_labour = NA, D17_cost_seed = 1800, + D12_harvst_amount = 2400, D16_imprv_seed = ""yes"", D23_where_sold = list(""On_contract""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""rentedin"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1400)), D_curr_crop = ""tomatoes"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou painel solar"", ""Construiu sua casa de habitação"", ""Pagamento de despesas escolares""), F03_year = c(2012, 2011, 2013), F02_source_income = c(""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura""))",1,poultry,4,no,more_once,"c(""radio"", ""solar_panel"", ""solar_torch"", ""mobile_phone"")",more_half,no,"c(""Sept"", ""Oct"", ""Nov"")",5,yes,NA,NULL,NA,194,"list(B06_memb_education = c(""pri_7"", ""pri_5"", ""pri_1"", ""na""), B05_memb_age = c(40, 34, 6, 1), B02_memb_gender = c(""male"", ""female"", ""female"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA +), B_memb_no = 1:4, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA))",province1,10,yes,village3,grass,719,33.48347111,no,2,no,no,"Ponto geográfico + +Latitude: 0515372 +Longetude: 7911789 +Altitude: 777.0m","NA",no,lab_ex_food,"NA",-19.11227133,list(),"NA",no,4 +2,no,ward2,yes,no,17,2,"list(F11_no_owned = c(1, 4), F_curr_liv = c(""oxen"", ""cows""))","NA",uuid:ffc83162-ff24-4a87-8709-eff17abc0b3b,no,"NA","NA",yes,2,"NA",burntbricks,1,list(),"c(""Sept"", ""Oct"", ""Nov"")","Pagamento de despesas escolares +Compra produtos de alimentação e de higiene",3,yes,yes,2017-06-04T10:52:22.000Z,yes,no,2,"c(""farming"", ""business"")",district1,cement,"list(E12_apply_water = c(NA, ""furrows""), E08_crops = list(NULL, ""vegetable""), E09_irr_manager = list(NULL, c(""du_head"", ""spouse"")), E09_irr_manager_other = c(NA, NA), E14_access_other = c(NA, NA), E08_crops_other = c(NA, NA), E13_plot_loc = c(NA, ""near""), E16_amount_pay = c(NA, NA), E15_duration = c(NA, NA), E07_bring = c(""no"", ""yes""), E14_access = c(NA, ""purchased""), E11_water_fields = c(NA, ""canal_gravity""), E10_water_source = c(NA, ""river""), E06_plot_no = 1:2)",2017-06-04,no,2017-06-04T10:33:55.000Z,"list(D04_crops_harvsted = list(""maize"", ""vegetable""), D01_curr_plot = 1:2, D02_total_plot = c(5, 1), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""du_head""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""June"", D08_land_planted = 5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 5, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 1500, D17_cost_seed = 1800, D12_harvst_amount = 90, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""spouse""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Mar"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 800, D19_pesticide = ""own_choice"", D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 4, D10_who_own_other = NA, D_use_pest = ""yes"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = 550, D22_sell = ""yes"", D20_paid_labour = ""yes"", + D21_cost_labour = 500, D17_cost_seed = 1500, D12_harvst_amount = 5, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""paid_fertilizer""), D14_cost_fert = 1600)), D_curr_crop = ""vegetable"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))","list(F01_item = c(""Comprou uma motorizada \nEletrificou a sua casa com sistema solar"", ""Comprou uma cabeça de boi para criar""), F03_year = 2016:2015, F02_source_income = c(""Renda proveniente de agricultura irrigada"", ""Renda proveniente de agricultura irrigada""))",2,"c(""oxen"", ""cows"")",7,no,more_once,"c(""cow_cart"", ""lorry"", ""motorcyle"", ""computer"", ""television"", ""radio"", ""sterio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""electricity"", ""mobile_phone"")",more_half,no,"c(""Nov"", ""Dec"")",17,no,NA,NULL,yes,199,"list(B06_memb_education = c(""sec_2"", ""pri_5"", ""sec_1"", ""sec_1"", ""pri_4"", ""pri_2"", ""na""), B05_memb_age = c(38, 37, 17, 15, 13, 11, 3), B02_memb_gender = c(""male"", ""female"", ""female"", ""female"", ""female"", ""male"", ""male""), B04_memb_marital_status = c(""unmarried"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"", ""Always"" +), B09_interviewee_main_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:7, B08_interviewee_activities = list(c(""small_scale_farm"", ""comm_farming""), c(""housework"", ""small_scale_farm"", ""comm_farming""), ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, +NA, NA, NA, NA, NA, NA))",province1,5,yes,village1,mabatisloping,711,33.48338952,yes,6,no,no,"Ponto geográfico + +Latitude: 0512586 +Longitude: 7906236 +Altitude: 711.3m","NA",yes,"c(""rely_less_food"", ""limit_variety"", ""reduce_meals"", ""restrict_adults"", ""lab_ex_food"")","NA",-19.11227751,list(),"NA",yes,7 +2,no,ward2,no,yes,20,NA,"list(F11_no_owned = c(3, 5, 3), F_curr_liv = c(""oxen"", ""goats"", ""pigs""))","NA",uuid:aa77a0d7-7142-41c8-b494-483a5b68d8a7,yes,"NA","NA",yes,2,"NA",burntbricks,1,list(),NULL,NA,3,NA,NA,2017-06-04T11:08:13.000Z,no,NA,2,NULL,district1,cement,list(),2017-06-04,no,2017-06-04T10:52:46.000Z,"list(D04_crops_harvsted = list(""maize"", ""maize""), D01_curr_plot = 1:2, D02_total_plot = c(0.5, 4.5), D03_unit_land = c(""hactare"", ""hactare""), D_crops_count = c(""1"", ""1""), D04_crops_harvsted_other = c(NA, NA), D_crops = list(list(D_repeat_times = list(list(D26_who_sell_harv = list(""child""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 0.5, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = NA, D07_ploughing_typ = ""hand_hoe"", D24_amnt_sold = 3, + D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 100, D17_cost_seed = 500, D12_harvst_amount = 3, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", + D05_times = 1), list(D_repeat_times = list(list(D26_who_sell_harv = list(""child""), D10_who_own = ""head_spouse_free"", D06_mnth_harvest = ""Apr"", D08_land_planted = 2, D11_harvst_unit = ""bags"", D19_pesticide_other = NA, D25_price = 1000, D19_pesticide = NA, D07_ploughing_typ = ""ox"", D24_amnt_sold = 1, D10_who_own_other = NA, D_use_pest = ""no"", D26_who_sell_harv_other = NA, D15_cost_manu = NA, D07_ploughing_typ_other = NA, D18_cost_pestcd = NA, D22_sell = ""yes"", D20_paid_labour = ""yes"", D21_cost_labour = 100, + D17_cost_seed = 500, D12_harvst_amount = 2, D16_imprv_seed = ""yes"", D23_where_sold = list(""local_market""), D11_harvst_unit_other = NA, D09_land_ownshp_other = NA, D09_land_ownshp = ""owned"", D13_fertilizer = list(""none""), D14_cost_fert = NA)), D_curr_crop = ""maize"", D_repeat_times_count = ""1"", D05_times = 1)), D03_unit_land_other = c(NA, NA))",list(),3,"c(""oxen"", ""goats"", ""pigs"")",8,no,NA,"c(""radio"", ""cow_plough"", ""solar_panel"", ""solar_torch"", ""table"", ""mobile_phone"")",NA,no,"c(""Oct"", ""Nov"")",20,yes,2,NULL,NA,200,"list(B06_memb_education = c(""sec_1"", ""pri_5"", ""sec_3"", ""pri_7"", ""pri_4"", ""pri_2"", ""pri_1"", ""na""), B05_memb_age = c(53, 30, 17, 12, 10, 8, 6, 4), B02_memb_gender = c(""male"", ""female"", ""male"", ""male"", ""male"", ""male"", ""male"", ""female""), B04_memb_marital_status = c(""married"", ""unmarried"", ""single"", ""single"", ""single"", ""single"", ""single"", ""single""), B03_relationship_du = c(""head"", ""Spouse"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child"", ""Child""), B07_residence_status = c(""Always"", ""Always"", ""Always"", ""Always"", +""Always"", ""Always"", ""Always"", ""Always""), B09_interviewee_main_activities = list(""small_scale_farm"", ""small_scale_farm"", ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B09_interviewee_main_activities_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B_memb_no = 1:8, B08_interviewee_activities = list(""small_scale_farm"", c(""housework"", ""small_scale_farm""), ""na"", ""na"", ""na"", ""na"", ""na"", ""na""), B03_relationship_du_other = c(NA, NA, NA, NA, NA, NA, NA, NA), B08_interviewee_activities_other = c(NA, NA, NA, NA, NA, NA, NA, +NA))",province1,20,NA,village1,mabatisloping,681,33.48337175,NA,"NA",NA,yes,"Ponto geográfico + +Latitude: 0512624 +Longetude: 7906669 +Altitude: 722.0m","NA",yes,"c(""rely_less_food"", ""restrict_adults"", ""borrow_food"")","NA",-19.11218302,"list(E04_res_water_field = c(""land_far"", ""field_wet""), E03_crops = list(""maize"", ""maize""), E04_res_water_field_other = c(NA, NA), E05_tried_access = c(""yes_no_land_chied"", ""yes_no_land_sale""), E05_tried_access_other = c(NA, NA), E02_plot_no = 1:2)","NA",no,8 diff --git a/data/download_data.R b/data/download_data.R new file mode 100644 index 000000000..fb5aa3945 --- /dev/null +++ b/data/download_data.R @@ -0,0 +1,7 @@ +if (!dir.exists("data")) + dir.create("data") + +if (! file.exists("data/SAFI_clean.csv")) { + download.file("https://ndownloader.figshare.com/files/11492171", + "data/SAFI_clean.csv", mode = "wb") +} diff --git a/data_output/interviews_plotting.csv b/data_output/interviews_plotting.csv new file mode 100644 index 000000000..d2bdece4d --- /dev/null +++ b/data_output/interviews_plotting.csv @@ -0,0 +1,132 @@ +key_ID,village,interview_date,no_membrs,years_liv,respondent_wall_type,rooms,memb_assoc,affect_conflicts,liv_count,no_meals,instanceID,bicycle,television,solar_panel,table,cow_cart,radio,cow_plough,solar_torch,mobile_phone,motorcyle,no_listed_items,fridge,electricity,sofa_set,lorry,sterio,computer,car,Jan,Sept,Oct,Nov,Dec,Feb,Mar,Aug,June,July,Apr,May,none,number_months_lack_food,number_items +1,God,2016-11-17T00:00:00Z,3,4,muddaub,1,NA,NA,1,2,uuid:ec241f2c-0609-46ed-b5e8-fe575f6cefef,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,1,4 +1,God,2016-11-17T00:00:00Z,7,9,muddaub,1,yes,once,3,2,uuid:099de9c9-3e5e-427b-8452-26250e840d6e,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,5,8 +3,God,2016-11-17T00:00:00Z,10,15,burntbricks,1,NA,NA,1,2,uuid:193d7daf-9582-409b-bf09-027dd36f9007,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,6,1 +4,God,2016-11-17T00:00:00Z,7,6,burntbricks,1,NA,NA,2,2,uuid:148d1105-778a-4755-aa71-281eadd4a973,TRUE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,4,5 +5,God,2016-11-17T00:00:00Z,7,40,burntbricks,1,NA,NA,4,2,uuid:2c867811-9696-4966-9866-f35c3e97d02d,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,4,4 +6,God,2016-11-17T00:00:00Z,3,3,muddaub,1,NA,NA,1,2,uuid:daa56c91-c8e3-44c3-a663-af6a49a2ca70,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,3,1 +7,God,2016-11-17T00:00:00Z,6,38,muddaub,1,no,never,1,3,uuid:ae20a58d-56f4-43d7-bafa-e7963d850844,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,1,2 +8,Chirodzo,2016-11-16T00:00:00Z,12,70,burntbricks,3,yes,never,2,2,uuid:d6cee930-7be1-4fd9-88c0-82a08f90fb5a,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,1,9 +9,Chirodzo,2016-11-16T00:00:00Z,8,6,burntbricks,1,no,never,3,3,uuid:846103d2-b1db-4055-b502-9cd510bb7b37,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,3 +10,Chirodzo,2016-12-16T00:00:00Z,12,23,burntbricks,5,no,never,2,3,uuid:8f4e49bc-da81-4356-ae34-e0d794a23721,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,4,9 +11,God,2016-11-21T00:00:00Z,6,20,sunbricks,1,NA,NA,2,2,uuid:d29b44e3-3348-4afc-aa4d-9eb34c89d483,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,2 +12,God,2016-11-21T00:00:00Z,7,20,burntbricks,3,yes,never,2,3,uuid:e6ee6269-b467-4e37-91fc-5e9eaf934557,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,5 +13,God,2016-11-21T00:00:00Z,6,8,burntbricks,1,no,never,3,2,uuid:6c00c145-ee3b-409c-8c02-2c8d743b6918,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,4 +14,God,2016-11-21T00:00:00Z,10,20,burntbricks,3,NA,NA,3,3,uuid:9b21467f-1116-4340-a3b1-1ab64f13c87d,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,6,6 +15,God,2016-11-21T00:00:00Z,5,30,sunbricks,2,yes,once,3,2,uuid:a837e545-ff86-4a1c-a1a5-6186804b985f,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,11,5 +16,God,2016-11-24T00:00:00Z,6,47,muddaub,1,NA,NA,4,3,uuid:d17db52f-4b87-4768-b534-ea8f9704c565,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,4 +17,God,2016-11-21T00:00:00Z,8,20,sunbricks,1,NA,NA,1,2,uuid:4707f3dc-df18-4348-9c2c-eec651e89b6b,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,1 +18,God,2016-11-21T00:00:00Z,4,20,muddaub,1,NA,NA,3,2,uuid:7ffe7bd1-a15c-420c-a137-e1f006c317a3,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,2 +19,God,2016-11-21T00:00:00Z,9,23,burntbricks,2,NA,NA,2,3,uuid:e32f2dc0-0d05-42fb-8e21-605757ddf07d,TRUE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,6 +20,God,2016-11-21T00:00:00Z,6,1,burntbricks,1,NA,NA,1,2,uuid:d1005274-bf52-4e79-8380-3350dd7c2bac,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,3 +21,God,2016-11-21T00:00:00Z,8,20,burntbricks,1,no,never,3,2,uuid:6570a7d0-6a0b-452c-aa2e-922500e35749,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,6,1 +22,God,2016-11-21T00:00:00Z,4,20,muddaub,1,NA,NA,1,2,uuid:a51c3006-8847-46ff-9d4e-d29919b8ecf9,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,9,1 +23,Ruaca,2016-11-21T00:00:00Z,10,20,burntbricks,4,NA,NA,3,3,uuid:58b37b6d-d6cd-4414-8790-b9c68bca98de,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,8 +24,Ruaca,2016-11-21T00:00:00Z,6,4,burntbricks,2,no,never,3,2,uuid:661457d3-7e61-45e8-a238-7415e7548f82,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,4 +25,Ruaca,2016-11-21T00:00:00Z,11,6,burntbricks,3,no,never,2,2,uuid:45ed84c4-114e-4df0-9f5d-c800806c2bee,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,10 +26,Ruaca,2016-11-21T00:00:00Z,3,20,burntbricks,2,no,never,2,2,uuid:1c54ee24-22c4-4ee9-b1ad-42d483c08e2e,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,4 +27,Ruaca,2016-11-21T00:00:00Z,7,36,burntbricks,2,NA,NA,3,3,uuid:3197cded-1fdc-4c0c-9b10-cfcc0bf49c4d,TRUE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,6 +28,Ruaca,2016-11-21T00:00:00Z,2,2,muddaub,1,no,more_once,1,3,uuid:1de53318-a8cf-4736-99b1-8239f8822473,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,3,1 +29,Ruaca,2016-11-21T00:00:00Z,7,10,burntbricks,2,yes,frequently,1,3,uuid:adcd7463-8943-4c67-b25f-f72311409476,TRUE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,5 +30,Ruaca,2016-11-21T00:00:00Z,7,22,muddaub,2,NA,NA,1,2,uuid:59341ead-92be-45a9-8545-6edf9f94fdc6,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,3 +31,Ruaca,2016-11-21T00:00:00Z,3,2,muddaub,1,NA,NA,1,3,uuid:cb06eb49-dd39-4150-8bbe-a599e074afe8,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,1 +32,Ruaca,2016-11-21T00:00:00Z,19,69,muddaub,2,yes,more_once,5,2,uuid:25597af3-cd79-449c-a48a-fb9aea6c48bf,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,6 +33,Ruaca,2016-11-21T00:00:00Z,8,34,muddaub,1,no,more_once,2,2,uuid:0fbd2df1-2640-4550-9fbd-7317feaa4758,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,7 +34,Chirodzo,2016-11-17T00:00:00Z,8,18,burntbricks,3,yes,more_once,3,2,uuid:14c78c45-a7cc-4b2a-b765-17c82b43feb4,FALSE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,7 +35,Chirodzo,2016-11-17T00:00:00Z,5,45,muddaub,1,yes,more_once,2,3,uuid:ff7496e7-984a-47d3-a8a1-13618b5683ce,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,5,2 +36,Chirodzo,2016-11-17T00:00:00Z,6,23,sunbricks,1,yes,once,3,3,uuid:c90eade0-1148-4a12-8c0e-6387a36f45b1,TRUE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,6 +37,Chirodzo,2016-11-17T00:00:00Z,3,8,burntbricks,1,NA,NA,2,3,uuid:408c6c93-d723-45ef-8dee-1b1bd3fe20cd,TRUE,TRUE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,7 +38,God,2016-11-17T00:00:00Z,10,19,muddaub,1,yes,never,3,3,uuid:81309594-ff58-4dc1-83a7-72af5952ee08,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,1,6 +39,God,2016-11-17T00:00:00Z,6,22,muddaub,1,NA,NA,1,3,uuid:c0fb6310-55af-4831-ae3d-2729556c3285,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,1,1 +40,God,2016-11-17T00:00:00Z,9,23,burntbricks,1,yes,never,1,3,uuid:c0b34854-eede-4e81-b183-ef58a45bfc34,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,6 +41,God,2016-11-17T00:00:00Z,7,22,muddaub,1,NA,NA,2,3,uuid:b3ba34d8-eea1-453d-bc73-c141bcbbc5e5,TRUE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,5 +42,God,2016-11-17T00:00:00Z,8,8,sunbricks,1,no,never,3,3,uuid:e3a1dd8a-1bda-428c-a014-2b527f11ae64,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,1 +43,Chirodzo,2016-11-17T00:00:00Z,7,29,muddaub,1,no,never,2,2,uuid:b4dff49f-ef27-40e5-a9d1-acf287b47358,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,5,2 +44,Chirodzo,2016-11-17T00:00:00Z,2,6,muddaub,1,NA,NA,3,2,uuid:f9fadf44-d040-4fca-86c1-2835f79c4952,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,2 +45,Chirodzo,2016-11-17T00:00:00Z,9,7,muddaub,1,no,never,4,3,uuid:e3554d22-35b1-4fb9-b386-dd5866ad5792,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,9 +46,Chirodzo,2016-11-17T00:00:00Z,10,42,burntbricks,2,no,once,2,2,uuid:35f297e0-aa5d-4149-9b7b-4965004cfc37,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,8 +47,Chirodzo,2016-11-17T00:00:00Z,2,2,muddaub,1,yes,once,1,3,uuid:2d0b1936-4f82-4ec3-a3b5-7c3c8cd6cc2b,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,2 +48,Chirodzo,2016-11-16T00:00:00Z,7,58,muddaub,1,NA,NA,3,3,uuid:e180899c-7614-49eb-a97c-40ed013a38a2,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,6,1 +49,Chirodzo,2016-11-16T00:00:00Z,6,26,burntbricks,2,NA,NA,2,3,uuid:2303ebc1-2b3c-475a-8916-b322ebf18440,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,7 +50,Chirodzo,2016-11-16T00:00:00Z,6,7,muddaub,1,yes,never,1,2,uuid:4267c33c-53a7-46d9-8bd6-b96f58a4f92c,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,7,1 +51,Chirodzo,2016-11-16T00:00:00Z,5,30,muddaub,1,NA,NA,1,3,uuid:18ac8e77-bdaf-47ab-85a2-e4c947c9d3ce,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,1 +52,Chirodzo,2016-11-16T00:00:00Z,11,15,burntbricks,3,no,never,3,3,uuid:6db55cb4-a853-4000-9555-757b7fae2bcf,FALSE,TRUE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,4,6 +21,Chirodzo,2016-11-16T00:00:00Z,8,16,burntbricks,3,yes,frequently,2,2,uuid:cc7f75c5-d13e-43f3-97e5-4f4c03cb4b12,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,1,3 +54,Chirodzo,2016-11-16T00:00:00Z,7,15,muddaub,1,no,never,1,2,uuid:273ab27f-9be3-4f3b-83c9-d3e1592de919,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,1 +55,Chirodzo,2016-11-16T00:00:00Z,9,23,muddaub,2,NA,NA,1,2,uuid:883c0433-9891-4121-bc63-744f082c1fa0,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,3 +56,Chirodzo,2016-11-16T00:00:00Z,12,23,burntbricks,2,yes,never,2,3,uuid:973c4ac6-f887-48e7-aeaf-4476f2cfab76,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,3 +57,Chirodzo,2016-11-16T00:00:00Z,4,27,burntbricks,1,no,never,1,2,uuid:a7184e55-0615-492d-9835-8f44f3b03a71,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,1 +58,Chirodzo,2016-11-16T00:00:00Z,11,45,burntbricks,3,no,never,3,2,uuid:a7a3451f-cd0d-4027-82d9-8dcd1234fcca,TRUE,TRUE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,7 +59,Chirodzo,2016-11-16T00:00:00Z,2,60,muddaub,3,NA,NA,3,2,uuid:1936db62-5732-45dc-98ff-9b3ac7a22518,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,1 +60,Chirodzo,2016-11-16T00:00:00Z,8,15,burntbricks,2,no,never,4,2,uuid:85465caf-23e4-4283-bb72-a0ef30e30176,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,1 +61,Chirodzo,2016-11-16T00:00:00Z,10,14,muddaub,1,yes,more_once,3,3,uuid:2401cf50-8859-44d9-bd14-1bf9128766f2,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,9 +62,Chirodzo,2016-11-16T00:00:00Z,5,5,muddaub,1,NA,NA,1,3,uuid:c6597ecc-cc2a-4c35-a6dc-e62c71b345d6,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,4,3 +63,Chirodzo,2016-11-16T00:00:00Z,4,10,muddaub,1,NA,NA,1,3,uuid:86ed4328-7688-462f-aac7-d6518414526a,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,4,1 +64,Chirodzo,2016-11-16T00:00:00Z,6,1,muddaub,1,NA,NA,1,3,uuid:28cfd718-bf62-4d90-8100-55fafbe45d06,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,5 +65,Chirodzo,2016-11-16T00:00:00Z,8,20,burntbricks,3,no,once,3,3,uuid:143f7478-0126-4fbc-86e0-5d324339206b,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,4 +66,Chirodzo,2016-11-16T00:00:00Z,10,37,burntbricks,3,yes,frequently,4,3,uuid:a457eab8-971b-4417-a971-2e55b8702816,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,9 +67,Chirodzo,2016-11-16T00:00:00Z,5,31,burntbricks,2,no,more_once,4,3,uuid:6c15d667-2860-47e3-a5e7-7f679271e419,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,5 +68,Chirodzo,2016-11-16T00:00:00Z,8,52,burntbricks,3,no,more_once,3,3,uuid:ef04b3eb-b47d-412e-9b09-4f5e08fc66f9,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,5 +69,Chirodzo,2016-11-16T00:00:00Z,4,12,muddaub,1,no,more_once,1,3,uuid:f86933a5-12b8-4427-b821-43c5b039401d,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,4 +70,Chirodzo,2016-11-16T00:00:00Z,8,25,burntbricks,2,no,more_once,4,2,uuid:1feb0108-4599-4bf9-8a07-1f5e66a50a0a,TRUE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,6 +71,Ruaca,2016-11-18T00:00:00Z,6,14,burntbricks,1,yes,more_once,3,2,uuid:761f9c49-ec93-4932-ba4c-cc7b78dfcef1,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,4,3 +127,Chirodzo,2016-11-16T00:00:00Z,4,18,burntbricks,8,NA,NA,1,2,uuid:f6d04b41-b539-4e00-868a-0f62b427587d,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,3,1 +133,Ruaca,2016-11-23T00:00:00Z,5,25,burntbricks,2,no,never,5,3,uuid:429d279a-a519-4dcc-9f64-4673b0fd5d53,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,15 +152,Ruaca,2016-11-24T00:00:00Z,10,16,burntbricks,1,yes,once,3,3,uuid:59738c17-1cda-49ee-a563-acd76f6bc487,TRUE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,7 +153,Ruaca,2016-11-24T00:00:00Z,5,41,burntbricks,1,NA,NA,1,2,uuid:7e7961ca-fa1c-4567-9bfa-a02f876e4e03,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,1 +155,God,2016-11-24T00:00:00Z,4,4,burntbricks,1,NA,NA,1,2,uuid:77b3021b-a9d6-4276-aaeb-5bfcfd413852,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,5,1 +178,Ruaca,2016-11-25T00:00:00Z,5,79,burntbricks,2,yes,frequently,3,3,uuid:2186e2ec-f65a-47cc-9bc1-a0f36dd9591c,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,4 +177,God,2016-11-25T00:00:00Z,10,13,sunbricks,1,no,more_once,2,3,uuid:87998c33-c8d2-49ec-9dae-c123735957ec,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,1,5 +180,Ruaca,2016-11-25T00:00:00Z,7,50,muddaub,1,no,never,3,3,uuid:ece89122-ea99-4378-b67e-a170127ec4e6,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,2 +181,God,2016-11-25T00:00:00Z,11,25,sunbricks,2,yes,more_once,3,3,uuid:bf373763-dca5-4906-901b-d1bacb4f0286,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,8 +182,God,2016-11-25T00:00:00Z,7,21,muddaub,3,no,more_once,2,3,uuid:394033e8-a6e2-4e39-bfac-458753a1ed78,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,4,1 +186,God,2016-11-28T00:00:00Z,7,24,muddaub,1,no,more_once,2,3,uuid:268bfd97-991c-473f-bd51-bc80676c65c6,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,2 +187,God,2016-11-28T00:00:00Z,5,43,muddaub,2,yes,more_once,4,3,uuid:0a42c9ee-a840-4dda-8123-15c1bede5dfc,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,9 +195,God,2016-11-28T00:00:00Z,5,48,burntbricks,1,no,never,3,2,uuid:2c132929-9c8f-450a-81ff-367360ce2c19,TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,5 +196,God,2016-11-28T00:00:00Z,7,49,burntbricks,2,yes,more_once,3,3,uuid:44e427d1-a448-4bf2-b529-7d67b2266c06,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,3 +197,God,2016-11-28T00:00:00Z,5,19,burntbricks,2,no,more_once,3,2,uuid:85c99fd2-775f-40c9-8654-68223f59d091,TRUE,TRUE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,1,7 +198,God,2016-11-28T00:00:00Z,3,49,burntbricks,1,no,never,1,3,uuid:28c64954-739c-444c-a6e0-355878e471c8,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,1,1 +201,God,2016-11-21T00:00:00Z,4,6,muddaub,2,NA,NA,2,2,uuid:9e79a31c-3ea5-44f0-80f9-a32db49422e3,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,4 +202,God,2016-11-17T00:00:00Z,12,12,burntbricks,4,yes,more_once,3,3,uuid:06d39051-38ef-4757-b68b-3327b1f16b9d,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,6,7 +72,Ruaca,2017-04-26T00:00:00Z,6,24,muddaub,1,yes,more_once,3,2,uuid:c4a2c982-244e-45a5-aa4b-71fa53f99e18,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,6,3 +73,Ruaca,2017-04-26T00:00:00Z,7,9,burntbricks,2,yes,more_once,3,3,uuid:ac3da862-9e6c-4962-94b6-f4c31624f207,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,9 +76,Ruaca,2017-04-26T00:00:00Z,17,48,burntbricks,2,yes,more_once,4,3,uuid:4178a296-903a-4a8e-9cfa-0cd6143476e8,TRUE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,5 +83,Ruaca,2017-04-27T00:00:00Z,5,22,burntbricks,1,yes,never,2,2,uuid:a1e9df00-c8ae-411c-931c-c7df898c68d0,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,3,3 +85,Ruaca,2017-04-27T00:00:00Z,7,40,sunbricks,1,no,never,2,2,uuid:4d0f472b-f8ae-4026-87c9-6b5be14b0a70,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,2 +89,God,2017-04-27T00:00:00Z,5,10,burntbricks,2,no,never,3,3,uuid:b3b309c6-f234-4830-8b30-87d26a17ee1d,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,7 +101,God,2017-04-27T00:00:00Z,3,4,muddaub,1,no,never,1,3,uuid:3c174acd-e431-4523-9ad6-eb14cddca805,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,2 +103,Ruaca,2017-04-27T00:00:00Z,6,96,sunbricks,1,no,never,5,3,uuid:e9d79844-ef14-493b-bbd6-d13691cc660e,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,5 +102,Ruaca,2017-04-28T00:00:00Z,12,15,burntbricks,2,yes,frequently,2,3,uuid:76206b0b-af74-4344-b24f-81e839f0d7b0,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,4 +78,Ruaca,2017-04-28T00:00:00Z,6,48,burntbricks,1,no,more_once,2,2,uuid:da3fa7cc-5ce9-44fd-9a78-b8982b607515,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,3,1 +80,Ruaca,2017-04-28T00:00:00Z,5,12,muddaub,1,no,more_once,1,3,uuid:a85df6df-0336-46fa-a9f4-522bf6f8b438,TRUE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,6 +104,Ruaca,2017-04-28T00:00:00Z,14,52,sunbricks,1,yes,never,4,3,uuid:bb2bb365-7d7d-4fe9-9353-b21269676119,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,3 +105,Ruaca,2017-04-28T00:00:00Z,6,40,sunbricks,1,yes,frequently,2,3,uuid:af0904ee-4fdb-4090-973f-599c81ddf022,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,5 +106,God,2017-04-30T00:00:00Z,15,22,sunbricks,5,no,never,2,3,uuid:468797c1-4a65-4f35-9c83-e28ce46972a2,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,10 +109,God,2017-05-03T00:00:00Z,4,12,sunbricks,1,NA,NA,3,3,uuid:602cd3f6-4a97-49c6-80e3-bcfd5c78dfa4,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,5,5 +110,Ruaca,2017-05-03T00:00:00Z,6,22,sunbricks,3,no,never,3,2,uuid:e7c51ac4-24e4-475e-88e7-f85e896945e3,TRUE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,5 +113,Ruaca,2017-05-03T00:00:00Z,11,26,burntbricks,3,no,never,4,3,uuid:01210861-aba1-4268-98d0-0260e05f5155,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,9 +118,Ruaca,2017-05-04T00:00:00Z,5,25,muddaub,1,NA,NA,1,3,uuid:77335b2e-8812-4a35-b1e5-ca9ab626dfea,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,3 +125,Ruaca,2017-05-04T00:00:00Z,5,14,burntbricks,1,no,more_once,2,3,uuid:02b05c68-302e-4e7a-b229-81cb1377fd29,TRUE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,5,6 +119,Ruaca,2017-05-04T00:00:00Z,3,14,muddaub,1,no,never,4,3,uuid:fa201fce-4e94-44b8-b435-c558c2e1ed55,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,4 +115,Ruaca,2017-05-11T00:00:00Z,4,16,sunbricks,2,NA,NA,3,3,uuid:628fe23d-188f-43e4-a203-a4bf3257d461,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,10 +108,God,2017-05-11T00:00:00Z,15,22,burntbricks,2,no,never,4,3,uuid:e4f4d6ba-e698-45a5-947f-ba6da88cc22b,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,4,7 +116,Ruaca,2017-05-11T00:00:00Z,5,25,burntbricks,3,NA,NA,3,3,uuid:cfee6297-2c0e-4f8a-94cc-9aaee0bd64cb,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,9 +117,Ruaca,2017-05-11T00:00:00Z,10,28,muddaub,4,NA,NA,1,3,uuid:3fe626b3-c794-48e1-a80f-5bfe440c507b,FALSE,TRUE,TRUE,TRUE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,4,7 +144,Ruaca,2017-05-18T00:00:00Z,7,5,burntbricks,4,no,frequently,4,2,uuid:0670cef6-d233-4852-89d8-36955261b0a3,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,8 +143,Ruaca,2017-05-18T00:00:00Z,10,24,burntbricks,2,no,frequently,3,3,uuid:9a096a12-b335-468c-b3cc-1191180d62de,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,8 +150,Ruaca,2017-05-18T00:00:00Z,7,8,muddaub,1,no,never,1,3,uuid:92613d0d-e7b1-4d62-8ea4-451d7cd0a982,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,1 +159,God,2017-05-18T00:00:00Z,4,24,sunbricks,1,no,never,1,3,uuid:37577f91-d665-443e-8d70-b914954cef4b,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,3 +160,God,2017-06-03T00:00:00Z,7,13,burntbricks,2,yes,frequently,2,2,uuid:f22831ec-6bc3-4b73-9197-4b01e01abb66,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,1,4 +165,Ruaca,2017-06-03T00:00:00Z,9,14,burntbricks,1,no,never,3,3,uuid:62f3f7af-f0f3-4f88-b9e0-acf8baa49ae4,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,12 +166,Ruaca,2017-06-03T00:00:00Z,11,16,muddaub,1,no,never,1,2,uuid:40aac732-94df-496c-97ba-5b67f59bcc7a,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,3 +167,Ruaca,2017-06-03T00:00:00Z,8,24,muddaub,1,no,never,3,2,uuid:a9d1a013-043b-475d-a71b-77ed80abe970,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,7 +174,Ruaca,2017-06-03T00:00:00Z,12,25,burntbricks,2,no,never,3,3,uuid:43ec6132-478c-4f87-878d-fb3c0c4d0c74,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,12 +175,Ruaca,2017-06-03T00:00:00Z,7,36,burntbricks,1,no,never,4,2,uuid:64fc743e-8176-40f6-8ae4-36ae97fac1d9,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,4,8 +189,Ruaca,2017-06-03T00:00:00Z,15,16,sunbricks,1,no,never,3,3,uuid:c17e374c-280b-4e78-bf21-74a7c1c73492,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,1,7 +191,Ruaca,2017-06-03T00:00:00Z,10,5,burntbricks,4,no,never,1,2,uuid:dad53aff-b520-4015-a9e3-f5fdf9168fe1,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,5 +192,Chirodzo,2017-06-03T00:00:00Z,9,20,burntbricks,1,no,once,1,3,uuid:f94409a6-e461-4e4c-a6fb-0072d3d58b00,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,8 +126,Ruaca,2017-05-18T00:00:00Z,3,7,burntbricks,1,no,more_once,3,3,uuid:69caea81-a4e5-4e8d-83cd-9c18d8e8d965,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,3 +193,Ruaca,2017-06-04T00:00:00Z,7,10,cement,3,no,more_once,3,3,uuid:5ccc2e5a-ea90-48b5-8542-69400d5334df,FALSE,TRUE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,0,12 +194,Ruaca,2017-06-04T00:00:00Z,4,5,muddaub,1,no,more_once,1,3,uuid:95c11a30-d44f-40c4-8ea8-ec34fca6bbbf,FALSE,FALSE,TRUE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,3,4 +199,Chirodzo,2017-06-04T00:00:00Z,7,17,burntbricks,2,yes,more_once,2,3,uuid:ffc83162-ff24-4a87-8709-eff17abc0b3b,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,12 +200,Chirodzo,2017-06-04T00:00:00Z,8,20,burntbricks,2,NA,NA,3,3,uuid:aa77a0d7-7142-41c8-b494-483a5b68d8a7,FALSE,FALSE,TRUE,TRUE,FALSE,TRUE,TRUE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,TRUE,TRUE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,FALSE,2,6 diff --git a/fig/02-starting-with-data-rendered-factor-plot-default-order-1.png b/fig/02-starting-with-data-rendered-factor-plot-default-order-1.png new file mode 100644 index 000000000..5feb80e20 Binary files /dev/null and b/fig/02-starting-with-data-rendered-factor-plot-default-order-1.png differ diff --git a/fig/02-starting-with-data-rendered-factor-plot-exercise-1.png b/fig/02-starting-with-data-rendered-factor-plot-exercise-1.png new file mode 100644 index 000000000..3e3bed97d Binary files /dev/null and b/fig/02-starting-with-data-rendered-factor-plot-exercise-1.png differ diff --git a/fig/02-starting-with-data-rendered-factor-plot-reorder-1.png b/fig/02-starting-with-data-rendered-factor-plot-reorder-1.png new file mode 100644 index 000000000..32f602529 Binary files /dev/null and b/fig/02-starting-with-data-rendered-factor-plot-reorder-1.png differ diff --git a/fig/05-ggplot2-rendered-adding-colors-1.png b/fig/05-ggplot2-rendered-adding-colors-1.png new file mode 100644 index 000000000..6830b2620 Binary files /dev/null and b/fig/05-ggplot2-rendered-adding-colors-1.png differ diff --git a/fig/05-ggplot2-rendered-adding-jitter-1.png b/fig/05-ggplot2-rendered-adding-jitter-1.png new file mode 100644 index 000000000..e09fa8521 Binary files /dev/null and b/fig/05-ggplot2-rendered-adding-jitter-1.png differ diff --git a/fig/05-ggplot2-rendered-adding-transparency-1.png b/fig/05-ggplot2-rendered-adding-transparency-1.png new file mode 100644 index 000000000..fe9939d16 Binary files /dev/null and b/fig/05-ggplot2-rendered-adding-transparency-1.png differ diff --git a/fig/05-ggplot2-rendered-adding-width-height-1.png b/fig/05-ggplot2-rendered-adding-width-height-1.png new file mode 100644 index 000000000..165f581f4 Binary files /dev/null and b/fig/05-ggplot2-rendered-adding-width-height-1.png differ diff --git a/fig/05-ggplot2-rendered-barplot-1-1.png b/fig/05-ggplot2-rendered-barplot-1-1.png new file mode 100644 index 000000000..f254bd496 Binary files /dev/null and b/fig/05-ggplot2-rendered-barplot-1-1.png differ diff --git a/fig/05-ggplot2-rendered-barplot-dodge-1.png b/fig/05-ggplot2-rendered-barplot-dodge-1.png new file mode 100644 index 000000000..2727d831e Binary files /dev/null and b/fig/05-ggplot2-rendered-barplot-dodge-1.png differ diff --git a/fig/05-ggplot2-rendered-barplot-faceting-1.png b/fig/05-ggplot2-rendered-barplot-faceting-1.png new file mode 100644 index 000000000..ff4a94ff3 Binary files /dev/null and b/fig/05-ggplot2-rendered-barplot-faceting-1.png differ diff --git a/fig/05-ggplot2-rendered-barplot-memb-assoc-1.png b/fig/05-ggplot2-rendered-barplot-memb-assoc-1.png new file mode 100644 index 000000000..12a834f08 Binary files /dev/null and b/fig/05-ggplot2-rendered-barplot-memb-assoc-1.png differ diff --git a/fig/05-ggplot2-rendered-barplot-stack-1.png b/fig/05-ggplot2-rendered-barplot-stack-1.png new file mode 100644 index 000000000..83337c637 Binary files /dev/null and b/fig/05-ggplot2-rendered-barplot-stack-1.png differ diff --git a/fig/05-ggplot2-rendered-barplot-theme-bw-1.png b/fig/05-ggplot2-rendered-barplot-theme-bw-1.png new file mode 100644 index 000000000..15625a5aa Binary files /dev/null and b/fig/05-ggplot2-rendered-barplot-theme-bw-1.png differ diff --git a/fig/05-ggplot2-rendered-barplot-wall-type-1.png b/fig/05-ggplot2-rendered-barplot-wall-type-1.png new file mode 100644 index 000000000..5e5b73b4a Binary files /dev/null and b/fig/05-ggplot2-rendered-barplot-wall-type-1.png differ diff --git a/fig/05-ggplot2-rendered-barplot-wall-types-labeled-1.png b/fig/05-ggplot2-rendered-barplot-wall-types-labeled-1.png new file mode 100644 index 000000000..6e56848bd Binary files /dev/null and b/fig/05-ggplot2-rendered-barplot-wall-types-labeled-1.png differ diff --git a/fig/05-ggplot2-rendered-boxplot-1.png b/fig/05-ggplot2-rendered-boxplot-1.png new file mode 100644 index 000000000..150837a37 Binary files /dev/null and b/fig/05-ggplot2-rendered-boxplot-1.png differ diff --git a/fig/05-ggplot2-rendered-boxplot-exercise-1.png b/fig/05-ggplot2-rendered-boxplot-exercise-1.png new file mode 100644 index 000000000..c0ae0ce36 Binary files /dev/null and b/fig/05-ggplot2-rendered-boxplot-exercise-1.png differ diff --git a/fig/05-ggplot2-rendered-boxplot-exercise-factor-1.png b/fig/05-ggplot2-rendered-boxplot-exercise-factor-1.png new file mode 100644 index 000000000..52b307b7f Binary files /dev/null and b/fig/05-ggplot2-rendered-boxplot-exercise-factor-1.png differ diff --git a/fig/05-ggplot2-rendered-boxplot-with-jitter-1.png b/fig/05-ggplot2-rendered-boxplot-with-jitter-1.png new file mode 100644 index 000000000..5999bd4af Binary files /dev/null and b/fig/05-ggplot2-rendered-boxplot-with-jitter-1.png differ diff --git a/fig/05-ggplot2-rendered-color-by-species-1.png b/fig/05-ggplot2-rendered-color-by-species-1.png new file mode 100644 index 000000000..778d815a9 Binary files /dev/null and b/fig/05-ggplot2-rendered-color-by-species-1.png differ diff --git a/fig/05-ggplot2-rendered-color-by-species-notes-1.png b/fig/05-ggplot2-rendered-color-by-species-notes-1.png new file mode 100644 index 000000000..b9cc82b89 Binary files /dev/null and b/fig/05-ggplot2-rendered-color-by-species-notes-1.png differ diff --git a/fig/05-ggplot2-rendered-create-ggplot-object-1.png b/fig/05-ggplot2-rendered-create-ggplot-object-1.png new file mode 100644 index 000000000..0d118a1d6 Binary files /dev/null and b/fig/05-ggplot2-rendered-create-ggplot-object-1.png differ diff --git a/fig/05-ggplot2-rendered-first-ggplot-1.png b/fig/05-ggplot2-rendered-first-ggplot-1.png new file mode 100644 index 000000000..0d118a1d6 Binary files /dev/null and b/fig/05-ggplot2-rendered-first-ggplot-1.png differ diff --git a/fig/05-ggplot2-rendered-ggplot-custom-themes-1.png b/fig/05-ggplot2-rendered-ggplot-custom-themes-1.png new file mode 100644 index 000000000..672c248f6 Binary files /dev/null and b/fig/05-ggplot2-rendered-ggplot-custom-themes-1.png differ diff --git a/fig/05-ggplot2-rendered-ggplot-customization-1.png b/fig/05-ggplot2-rendered-ggplot-customization-1.png new file mode 100644 index 000000000..7909d59a9 Binary files /dev/null and b/fig/05-ggplot2-rendered-ggplot-customization-1.png differ diff --git a/fig/05-ggplot2-rendered-ggplot-customization-font-size-1.png b/fig/05-ggplot2-rendered-ggplot-customization-font-size-1.png new file mode 100644 index 000000000..4485dbac9 Binary files /dev/null and b/fig/05-ggplot2-rendered-ggplot-customization-font-size-1.png differ diff --git a/fig/05-ggplot2-rendered-ggplot-customization-label-orientation-1.png b/fig/05-ggplot2-rendered-ggplot-customization-label-orientation-1.png new file mode 100644 index 000000000..de1aa129a Binary files /dev/null and b/fig/05-ggplot2-rendered-ggplot-customization-label-orientation-1.png differ diff --git a/fig/05-ggplot2-rendered-percent-items-barplot-1.png b/fig/05-ggplot2-rendered-percent-items-barplot-1.png new file mode 100644 index 000000000..592be55d0 Binary files /dev/null and b/fig/05-ggplot2-rendered-percent-items-barplot-1.png differ diff --git a/fig/05-ggplot2-rendered-scatter-challenge-1.png b/fig/05-ggplot2-rendered-scatter-challenge-1.png new file mode 100644 index 000000000..811b66381 Binary files /dev/null and b/fig/05-ggplot2-rendered-scatter-challenge-1.png differ diff --git a/fig/05-ggplot2-rendered-violin-plot-1.png b/fig/05-ggplot2-rendered-violin-plot-1.png new file mode 100644 index 000000000..10204866b Binary files /dev/null and b/fig/05-ggplot2-rendered-violin-plot-1.png differ diff --git a/fig/06-rmarkdown-rendered-caption-plot-1.png b/fig/06-rmarkdown-rendered-caption-plot-1.png new file mode 100644 index 000000000..f9f44a0a1 Binary files /dev/null and b/fig/06-rmarkdown-rendered-caption-plot-1.png differ diff --git a/fig/06-rmarkdown-rendered-my-fancy-plot-1.png b/fig/06-rmarkdown-rendered-my-fancy-plot-1.png new file mode 100644 index 000000000..83337c637 Binary files /dev/null and b/fig/06-rmarkdown-rendered-my-fancy-plot-1.png differ diff --git a/fig/R_00_Rstudio_01.png b/fig/R_00_Rstudio_01.png new file mode 100644 index 000000000..9f3206abd Binary files /dev/null and b/fig/R_00_Rstudio_01.png differ diff --git a/fig/R_00_Rstudio_02.png b/fig/R_00_Rstudio_02.png new file mode 100644 index 000000000..e075be24c Binary files /dev/null and b/fig/R_00_Rstudio_02.png differ diff --git a/fig/R_00_Rstudio_03.png b/fig/R_00_Rstudio_03.png new file mode 100644 index 000000000..4908dd480 Binary files /dev/null and b/fig/R_00_Rstudio_03.png differ diff --git a/fig/R_02_Import_Dataset_01.png b/fig/R_02_Import_Dataset_01.png new file mode 100644 index 000000000..4af962019 Binary files /dev/null and b/fig/R_02_Import_Dataset_01.png differ diff --git a/fig/data-frame.svg b/fig/data-frame.svg new file mode 100644 index 000000000..b82230ef1 --- /dev/null +++ b/fig/data-frame.svg @@ -0,0 +1,269 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/fig/here_horst.png b/fig/here_horst.png new file mode 100644 index 000000000..e1c5443f3 Binary files /dev/null and b/fig/here_horst.png differ diff --git a/fig/long_to_wide.png b/fig/long_to_wide.png new file mode 100644 index 000000000..5196254cb Binary files /dev/null and b/fig/long_to_wide.png differ diff --git a/fig/new-rmd.png b/fig/new-rmd.png new file mode 100644 index 000000000..8e04324f2 Binary files /dev/null and b/fig/new-rmd.png differ diff --git a/fig/packages_pane.png b/fig/packages_pane.png new file mode 100644 index 000000000..09f0872e5 Binary files /dev/null and b/fig/packages_pane.png differ diff --git a/fig/pivot_long_to_wide.png b/fig/pivot_long_to_wide.png new file mode 100644 index 000000000..acf09325a Binary files /dev/null and b/fig/pivot_long_to_wide.png differ diff --git a/fig/pivot_wide_to_long.png b/fig/pivot_wide_to_long.png new file mode 100644 index 000000000..c34c0b124 Binary files /dev/null and b/fig/pivot_wide_to_long.png differ diff --git a/fig/r+rstudio-analogy.jpg b/fig/r+rstudio-analogy.jpg new file mode 100644 index 000000000..689470f2f Binary files /dev/null and b/fig/r+rstudio-analogy.jpg differ diff --git a/fig/r-automatic.jpeg b/fig/r-automatic.jpeg new file mode 100644 index 000000000..495d1151b Binary files /dev/null and b/fig/r-automatic.jpeg differ diff --git a/fig/r-manual.jpeg b/fig/r-manual.jpeg new file mode 100644 index 000000000..e717d72be Binary files /dev/null and b/fig/r-manual.jpeg differ diff --git a/fig/rmarkdown_wizards.png b/fig/rmarkdown_wizards.png new file mode 100644 index 000000000..3d0d8071b Binary files /dev/null and b/fig/rmarkdown_wizards.png differ diff --git a/fig/rmd-rmd_to_html.png b/fig/rmd-rmd_to_html.png new file mode 100644 index 000000000..59eaa72db Binary files /dev/null and b/fig/rmd-rmd_to_html.png differ diff --git a/fig/rstudio_project_files.jpeg b/fig/rstudio_project_files.jpeg new file mode 100644 index 000000000..e6a625445 Binary files /dev/null and b/fig/rstudio_project_files.jpeg differ diff --git a/fig/tidy-data-wickham.png b/fig/tidy-data-wickham.png new file mode 100644 index 000000000..4287d74c6 Binary files /dev/null and b/fig/tidy-data-wickham.png differ diff --git a/fig/tidyr-pivot_wider_longer.gif b/fig/tidyr-pivot_wider_longer.gif new file mode 100644 index 000000000..3b91c6d04 Binary files /dev/null and b/fig/tidyr-pivot_wider_longer.gif differ diff --git a/fig/wide_to_long.png b/fig/wide_to_long.png new file mode 100644 index 000000000..c3da85864 Binary files /dev/null and b/fig/wide_to_long.png differ diff --git a/fig/working-directory-setup.png b/fig/working-directory-setup.png new file mode 100644 index 000000000..9156f580e Binary files /dev/null and b/fig/working-directory-setup.png differ diff --git a/index.md b/index.md new file mode 100644 index 000000000..5ab6eb3d9 --- /dev/null +++ b/index.md @@ -0,0 +1,50 @@ +--- +site: sandpaper::sandpaper_site +--- + +Data Carpentry's aim is to teach researchers basic concepts, skills, +and tools for working with data so that they can get more done in +less time, and with less pain. The lessons below were designed for +those interested in working with social sciences data in R. + +This is an introduction to R designed for participants with no +programming experience. These lessons can be taught in a day (~ 6 +hours). They start with some basic information about R syntax, the +RStudio interface, and move through how to import CSV files, the +structure of data frames, how to deal with factors, how to add/remove +rows and columns, how to calculate summary statistics from a data +frame, and a brief introduction to plotting. + +:::::::::::::::::::::::::::::::::::::::::: prereq + +## Getting Started + +Data Carpentry's teaching is hands-on, so participants are encouraged to use +their own computers to ensure the proper setup of tools for an efficient +workflow. + +**These lessons assume no prior knowledge of the skills or tools.** + +To get started, follow the directions in the "[Setup](setup.html)" tab to +download data to your computer and follow any installation instructions. + +#### Prerequisites + +This lesson requires a working copy of **R** and **RStudio**. +
To most effectively use these materials, please make sure to install +everything *before* working through this lesson. + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + +:::::::::::::::::::::::::::::::::::::::::: instructor + +## For Instructors + +If you are teaching this lesson in a workshop, please see the +[Instructor notes](https://datacarpentry.org/r-socialsci/instructor/instructor-notes.html)https://datacarpentry.org/r-socialsci/instructor/instructor-notes.html). + + +:::::::::::::::::::::::::::::::::::::::::::::::::: + + diff --git a/instructor-notes.md b/instructor-notes.md new file mode 100644 index 000000000..a2930b3a5 --- /dev/null +++ b/instructor-notes.md @@ -0,0 +1,168 @@ +--- +title: Instructor Notes +--- + +## Dataset + +The data used for this lesson are in the figshare repository at: [https://figshare.com/articles/SAFI\_Survey\_Results/6262019](https://figshare.com/articles/SAFI_Survey_Results/6262019). + +This lesson uses `SAFI_clean.csv`. The direct download link for this file is: +[https://ndownloader.figshare.com/files/11492171](https://ndownloader.figshare.com/files/11492171). + +When time comes in the lesson to use this file, we recommend that the +instructors place the `download.file()` command in the Etherpad, and that the +learners copy and paste it in their scripts to download the file directly from +figshare in their working directory. If the learners haven't created the +`data/` directory and/or are not in the correct working directory, the +`download.file()` command will produce an error. Therefore, it is important to use +the stickies at this point. + +## RStudio and Multiple R Installs + +Some learners may have previous R installations. On Mac, if a new install is +performed, the learner's system will create a symbolic link, pointing to the new +install as 'Current.' Sometimes this process does not occur, and, even though a +new R is installed and can be accessed via the R console, RStudio does not find +it. The net result of this is that the learner's RStudio will be running an +older R install. This will cause package installations to fail. This can be +fixed at the terminal. First, check for the appropriate R installation in the +library: + +``` +ls -l /Library/Frameworks/R.framework/Versions/ +``` + +We are currently using R >=3.2. If it isn't there, they will need to install it. +If it is present, you will need to set the symbolic link to Current to point to +the R >=3.2 directory: + +``` +ln -s /Library/Frameworks/R.framework/Versions/3.x.y /Library/Frameworks/R.framework/Version/Current +``` + +Then restart RStudio. + +## Narrative + +### Before we start + +- The main goal here is to help the learners be comfortable with the RStudio + interface. We use RStudio because it helps make using R more organized and + user friendly. +- Go very slowly in the "Getting setup" section. Make sure everyone is following + along (remind learners to use the stickies). Plan with the helpers at this + point to go around the room, and be available to help. It's important to make + sure that learners are in the correct working directory, and that they create + a `data` (all lowercase) subfolder. + +### Intro to R + +- Why use assignment arrows (\<-) over equal signs? + Historically, the assignment arrow dates back to S. In S, the \<- was inspired by + APL, which had a key for \<-. At that time, \<- was used for variable assignment, + because == didn't exist for equality comparisons. Instead, equality was tested + with =. So, you needed a different variable for assignment. + +Fast forward to today, there really are only a few mechanical reasons why \<- is +preferred over =. Assignment ranks higher in operator precedence than =. +If you wish to perform variable assignment inside a function, \<- is the only +option. + +- When going over the section on assignments, make sure to pause for at least 30 + seconds when asking "What do you think is the current content of the object + `area_acres`? 123.5 or 6.175?". For learners with no programming experience, + this is a new and important concept. +- Given that the concept of missing data is an important feature of the R + language, it is worth spending enough time on it. + +### Starting with data + +The two main goals for this lessons are: + +- To make sure that learners are comfortable with working with data frames, and + can use the bracket notation to select slices/columns. +- To expose learners to factors. Their behavior is not necessarily intuitive, + and so it is important that they are guided through it the first time they are + exposed to it. The content of the lesson should be enough for learners to + avoid common mistakes with them. + +### Data wrangling with dplyr and tidyr + +- This lesson works better if you have graphics demonstrating dplyr commands. + You can modify [this Google Slides deck](https://docs.google.com/presentation/d/1A9abypFdFp8urAe9z7GCMjFr4aPeIb8mZAtJA2F7H0w/edit#slide=id.g652714585f_0_114) and use it for your workshop. +- For this lesson make sure that learners are comfortable using pipes. +- There is also sometimes some confusion on what the arguments of `group_by` + should be, and when to use `filter()` and `select()`. +- If the code that generates the output for the table `interviews_plotting` (which is used in the following episode) causes the following error: + +> Error: Can't rename columns that don't exist. +> x Column NA doesn't exist. + +Make sure you have read in the CSV file with the option that interprets the `"NULL"` string as `NA`, like so: + +``` +interviews <- read_csv("data/SAFI_clean.csv", na = "NULL") +``` + +### Visualizing data with ggplot2 + +- This lesson is a broad overview of ggplot2 and focuses on (1) getting familiar + with the layering system of ggplot2, (2) using the argument `group` in the + `aes()` function, (3) basic customization of the plots. + +### Getting started with R Markdown (Optional) + +- This is an optional lesson intended to introduce learners to R Markdown. +- While it is listed after the core lessons, some instructors may prefer to teach it early + in the workshop, depending on the audience. + +### Processing JSON data (Optional) + +- This is an optional lessons intended to introduce learners to JSON data, as well as how to + read JSON data into R and how to convert the data into a data frame or array. +- Note that his lesson was community-contributed and remains a work in progress. As such, it could + benefit from feedback from instructors and/or workshop participants. + +## Technical Tips and Tricks + +Show how to use the 'zoom' button to blow up graphs without constantly resizing +windows. + +Sometimes a package will not install. You can try a different CRAN mirror: + +- Tools > Global Options > Packages > CRAN Mirror + +Alternatively you can go to CRAN and download the package and install from ZIP +file: + +- Tools > Install Packages > set to 'from Zip/TAR' + +It is important that R, and the R packages be installed locally, not on a network +drive. If a learner is using a machine with multiple users where their account is +not based locally this can create a variety of issues (this often happens on +university computers). Hopefully the learner will realize these issues beforehand, +but depending on the machine and how the IT folks that service the computer have +things set up, it may be very difficult to impossible to make R work without their +help. + +If learners are having issues with one package, they may have issues with another. +It's often easier to make sure they have all the needed packages installed at one +time, rather than deal with these issues over and over. +[Here is a list of all necessary packages for these lessons.](https://github.com/datacarpentry/R-ecology-lesson/blob/master/needed_packages.R) + +**`|` character on Spanish keyboards:** The Spanish Mac keyboard does not have a `|` key. +This character can be created using: + +``` +`alt` + `1` +``` + +## Other Resources + +If you encounter a problem during a workshop, feel free to contact the +maintainers by email or [open an +issue](https://github.com/datacarpentry/r-socialsci/issues/new). + +For a more in-depth coverage of topics of the workshops, you may want to read "[R for Data Science](http://r4ds.had.co.nz/)" by Hadley Wickham and Garrett Grolemund. + + diff --git a/learner-profiles.md b/learner-profiles.md new file mode 100644 index 000000000..434e335aa --- /dev/null +++ b/learner-profiles.md @@ -0,0 +1,5 @@ +--- +title: FIXME +--- + +This is a placeholder file. Please add content here. diff --git a/md5sum.txt b/md5sum.txt new file mode 100644 index 000000000..6618ddeba --- /dev/null +++ b/md5sum.txt @@ -0,0 +1,19 @@ +"file" "checksum" "built" "date" +"CODE_OF_CONDUCT.md" "c93c83c630db2fe2462240bf72552548" "site/built/CODE_OF_CONDUCT.md" "2023-07-10" +"LICENSE.md" "afaf427b4223952624dcb6d8ded53ec0" "site/built/LICENSE.md" "2023-07-10" +"config.yaml" "f6c45da545dba12d47f861d88261d5db" "site/built/config.yaml" "2023-07-11" +"index.md" "75c3740ca3a1ae83a17ee8d395279286" "site/built/index.md" "2023-07-10" +"episodes/00-intro.Rmd" "11547fbd7c3e06263b2d93b1a9a38ed5" "site/built/00-intro.md" "2023-07-10" +"episodes/01-intro-to-r.Rmd" "23d7135e2cc8d6412e87ca12e4a22446" "site/built/01-intro-to-r.md" "2023-07-10" +"episodes/02-starting-with-data.Rmd" "1cc16a683b4fdbfa5a5c2e85f3bb324b" "site/built/02-starting-with-data.md" "2023-07-10" +"episodes/03-dplyr.Rmd" "1afb9c880a904ce10789ec6a607922a6" "site/built/03-dplyr.md" "2023-07-10" +"episodes/04-tidyr.Rmd" "b630435fafa0871e975cee0cb0557594" "site/built/04-tidyr.md" "2023-07-10" +"episodes/05-ggplot2.Rmd" "f5eab52ad1a54fec7d1abaab1ba53bee" "site/built/05-ggplot2.md" "2023-07-10" +"episodes/06-rmarkdown.Rmd" "f547d49b8f79fbcc6fbe8a78e512df61" "site/built/06-rmarkdown.md" "2023-07-10" +"episodes/07-json.Rmd" "e5aeddc239ecdb8549653c16e38823f9" "site/built/07-json.md" "2023-07-10" +"instructors/instructor-notes.md" "10d2ddec20a1ef8f2537f4002342f6ac" "site/built/instructor-notes.md" "2023-07-10" +"learners/reference.md" "84ec59e74313499cccfab60a73fd0b13" "site/built/reference.md" "2023-07-10" +"learners/R-handout.Rmd" "3eb70f6b3d7998e1109e7ad91c822fd8" "site/built/R-handout.md" "2023-07-11" +"learners/setup.md" "b879b810b382d3df882dc7d521398454" "site/built/setup.md" "2023-07-10" +"profiles/learner-profiles.md" "60b93493cf1da06dfd63255d73854461" "site/built/learner-profiles.md" "2023-07-10" +"renv/profiles/lesson-requirements/renv.lock" "2001d75a8b54d4f565bbc3caf3e338e9" "site/built/renv.lock" "2023-07-10" diff --git a/reference.md b/reference.md new file mode 100644 index 000000000..3d080fc81 --- /dev/null +++ b/reference.md @@ -0,0 +1,98 @@ +--- +{} +--- + +## Glossary + +Cheat sheet of functions used in the lessons + +### Lesson 1 -- Introduction to R + +- `sqrt()` # calculate the square root +- `round()` # round a number +- `args()` # find what arguments a function takes +- `length()` # how many elements are in a particular vector +- `class() ` # the class (the type of element) of an object +- `str() ` # an overview of the object and the elements it contains +- `typeof` # determines the (R internal) type or storage mode of any object +- `c() ` # create vector; add elements to vector +- `[ ]` # extract and subset vector +- `%in% ` # to test if a value is found in a vector +- `is.na()` # test if there are missing values +- `na.omit()` # Returns the object with incomplete cases removed +- `complete.cases()`\# elements which are complete cases + +### Lesson 2 -- Starting with Data + +- `download.file() ` # download files from the internet to your computer +- `read_csv() ` # load CSV file into R memory +- `head() ` # shows the first 6 rows +- `view()` # invoke a spreadsheet-style data viewer +- `read_delim()` # load a file in table format into R memory +- `str() ` # check structure of the object and information about the class, length and content of each column +- `dim() ` # check dimension of data frame +- `nrow() ` # returns the number of rows +- `ncol() ` # returns the number of columns +- `tail() ` # shows the last 6 rows +- `names() ` # returns the column names (synonym of colnames() for data frame objects) +- `rownames() ` # returns the row names +- `summary() ` # summary statistics for each column +- `glimpse` # like `str()` applied to a data frame but tries to show as much data as possible +- `factor() ` # create factors +- `levels() ` # check levels of a factor +- `nlevels() ` # check number of levels of a factor +- `as.character()` # convert an object to a character vector +- `as.numeric()` # convert an object to a numeric vector +- `as.numeric(as.character(x))` # convert factors where the levels appear as characters to a numeric vector +- `as.numeric(levels(x))[x]` # convert factors where the levels appear as numbers to a numeric vector +- `plot()` # plot an object +- `addNA()` # convert NA into a factor level +- `data.frame()` # create a data.frame object +- `ymd()` # convert a vector representing year, month, and day to a Date vector +- `paste()` # concatenate vectors after converting to character + +### Lesson 3 -- Data Wrangling with dplyr and tidyr + +- `str()` # check structure of the object and information about the class, length and content of each column +- `view()` # invoke a spreadsheet-style data viewer +- `select() ` # select columns of a data frame +- `filter() ` # allows you to select a subset of rows in a data frame +- `%>% ` # pipes to select and filter at the same time +- `mutate() ` # create new columns based on the values in existing columns +- `head() ` # shows the first 6 rows +- `group_by() ` # split the data into groups, apply some analysis to each group, and then combine the results. +- `summarize() ` # collapses each group into a single-row summary of that group +- `mean()` # calculate the mean value of a vector +- `!is.na()` # test if there are no missing values +- `print()` # print values to the console +- `min()` # return the minimum value of a vector +- `arrange()` # arrange rows by variables +- `desc()` # transform a vector into a format that will be sorted in descending order +- `count()` # counts the total number of records for each category +- `pivot_wider()` # reshape a data frame by a key-value pair across multiple columns +- `pivot_longer()` # reshape a data frame by collapsing into a key-value pair +- `replace_na()` # Replace NAs with specified values +- `n_distinct()` # get a count of unique values +- `write_csv()` # save to a csv formatted file + +### Lesson 4 -- Data Visualization with ggplot2 + +- `read_csv()` # load a csv formatted file into R memory +- `ggplot2(data= , aes(x= , y= )) + geom_point( ) + facet_wrap () + theme_bw() + theme() ` # skeleton for creating plot layers +- `aes()` # by selecting the variables to be plotted and the variables to + define the presentation such as plotting size, shape color, etc. +- `geom_` # graphical representation of the data in the plot (points, lines, bars). To add a geom to the plot use + operator +- `facet_wrap()` # allows to split one plot into multiple plots based on a factor included in the dataset +- `labs()` # set labels to plot +- `theme_bw()` # set the background to white +- `theme()` # used to locally modify one or more theme elements in a specific ggplot object +- `+` # arrange ggplots horizontally +- `/` # arrange ggplots vertically +- `plot_layout()` # set width and height of individual plots in a patchwork of plots +- `ggsave()` # save a ggplot + +### Lesson 5 -- Processing JSON data + +- `read_json()` # load json object to an R object + + diff --git a/renv.lock b/renv.lock new file mode 100644 index 000000000..936fd7ed4 --- /dev/null +++ b/renv.lock @@ -0,0 +1,1583 @@ +{ + "R": { + "Version": "4.3.0", + "Repositories": [ + { + "Name": "carpentries", + "URL": "https://carpentries.r-universe.dev" + }, + { + "Name": "carpentries_archive", + "URL": "https://carpentries.github.io/drat" + }, + { + "Name": "CRAN", + "URL": "https://cran.rstudio.com" + } + ] + }, + "Packages": { + "DBI": { + "Package": "DBI", + "Version": "1.1.3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "methods" + ], + "Hash": "b2866e62bab9378c3cc9476a1954226b" + }, + "MASS": { + "Package": "MASS", + "Version": "7.3-60", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "grDevices", + "graphics", + "methods", + "stats", + "utils" + ], + "Hash": "a56a6365b3fa73293ea8d084be0d9bb0" + }, + "Matrix": { + "Package": "Matrix", + "Version": "1.5-4.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "graphics", + "grid", + "lattice", + "methods", + "stats", + "utils" + ], + "Hash": "38082d362d317745fb932e13956dccbb" + }, + "R6": { + "Package": "R6", + "Version": "2.5.1", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R" + ], + "Hash": "470851b6d5d0ac559e9d01bb352b4021" + }, + "RColorBrewer": { + "Package": "RColorBrewer", + "Version": "1.1-3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R" + ], + "Hash": "45f0398006e83a5b10b72a90663d8d8c" + }, + "RSQLite": { + "Package": "RSQLite", + "Version": "2.3.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "DBI", + "R", + "bit64", + "blob", + "cpp11", + "memoise", + "methods", + "pkgconfig", + "plogr" + ], + "Hash": "207c90cd5438a1f596da2cd54c606fee" + }, + "askpass": { + "Package": "askpass", + "Version": "1.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "sys" + ], + "Hash": "e8a22846fff485f0be3770c2da758713" + }, + "backports": { + "Package": "backports", + "Version": "1.4.1", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R" + ], + "Hash": "c39fbec8a30d23e721980b8afb31984c" + }, + "base64enc": { + "Package": "base64enc", + "Version": "0.1-3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R" + ], + "Hash": "543776ae6848fde2f48ff3816d0628bc" + }, + "bit": { + "Package": "bit", + "Version": "4.0.5", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R" + ], + "Hash": "d242abec29412ce988848d0294b208fd" + }, + "bit64": { + "Package": "bit64", + "Version": "4.0.5", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "bit", + "methods", + "stats", + "utils" + ], + "Hash": "9fe98599ca456d6552421db0d6772d8f" + }, + "blob": { + "Package": "blob", + "Version": "1.2.4", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "methods", + "rlang", + "vctrs" + ], + "Hash": "40415719b5a479b87949f3aa0aee737c" + }, + "broom": { + "Package": "broom", + "Version": "1.0.5", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "backports", + "dplyr", + "ellipsis", + "generics", + "glue", + "lifecycle", + "purrr", + "rlang", + "stringr", + "tibble", + "tidyr" + ], + "Hash": "fd25391c3c4f6ecf0fa95f1e6d15378c" + }, + "bslib": { + "Package": "bslib", + "Version": "0.5.0", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "base64enc", + "cachem", + "grDevices", + "htmltools", + "jquerylib", + "jsonlite", + "memoise", + "mime", + "rlang", + "sass" + ], + "Hash": "1b117970533deb6d4e992c1b34e9d905" + }, + "cachem": { + "Package": "cachem", + "Version": "1.0.8", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "fastmap", + "rlang" + ], + "Hash": "c35768291560ce302c0a6589f92e837d" + }, + "callr": { + "Package": "callr", + "Version": "3.7.3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "R6", + "processx", + "utils" + ], + "Hash": "9b2191ede20fa29828139b9900922e51" + }, + "cellranger": { + "Package": "cellranger", + "Version": "1.1.0", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "rematch", + "tibble" + ], + "Hash": "f61dbaec772ccd2e17705c1e872e9e7c" + }, + "cli": { + "Package": "cli", + "Version": "3.6.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "utils" + ], + "Hash": "89e6d8219950eac806ae0c489052048a" + }, + "clipr": { + "Package": "clipr", + "Version": "0.8.0", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "utils" + ], + "Hash": "3f038e5ac7f41d4ac41ce658c85e3042" + }, + "colorspace": { + "Package": "colorspace", + "Version": "2.1-0", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "grDevices", + "graphics", + "methods", + "stats" + ], + "Hash": "f20c47fd52fae58b4e377c37bb8c335b" + }, + "conflicted": { + "Package": "conflicted", + "Version": "1.2.0", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "cli", + "memoise", + "rlang" + ], + "Hash": "bb097fccb22d156624fd07cd2894ddb6" + }, + "cpp11": { + "Package": "cpp11", + "Version": "0.4.4", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "3f7d8664d7324406cd10cd650ad85e5f" + }, + "crayon": { + "Package": "crayon", + "Version": "1.5.2", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "grDevices", + "methods", + "utils" + ], + "Hash": "e8a1e41acf02548751f45c718d55aa6a" + }, + "curl": { + "Package": "curl", + "Version": "5.0.1", + "Source": "Repository", + "Repository": "https://carpentries.r-universe.dev", + "RemoteUrl": "https://github.com/jeroen/curl", + "RemoteRef": "v5.0.1", + "RemoteSha": "ffd6536ef3732b924e141afbc6d2fd5a85a58f18", + "Requirements": [ + "R" + ], + "Hash": "2118af9cb164c8d2dddc7b89eaf732d9" + }, + "data.table": { + "Package": "data.table", + "Version": "1.14.8", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "methods" + ], + "Hash": "b4c06e554f33344e044ccd7fdca750a9" + }, + "dbplyr": { + "Package": "dbplyr", + "Version": "2.3.2", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "DBI", + "R", + "R6", + "blob", + "cli", + "dplyr", + "glue", + "lifecycle", + "magrittr", + "methods", + "pillar", + "purrr", + "rlang", + "tibble", + "tidyr", + "tidyselect", + "utils", + "vctrs", + "withr" + ], + "Hash": "d24305b92db333726aed162a2c23a147" + }, + "digest": { + "Package": "digest", + "Version": "0.6.32", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "utils" + ], + "Hash": "011ce1464a4716c488f4fc649c3d4d50" + }, + "dplyr": { + "Package": "dplyr", + "Version": "1.1.2", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "R6", + "cli", + "generics", + "glue", + "lifecycle", + "magrittr", + "methods", + "pillar", + "rlang", + "tibble", + "tidyselect", + "utils", + "vctrs" + ], + "Hash": "dea6970ff715ca541c387de363ff405e" + }, + "dtplyr": { + "Package": "dtplyr", + "Version": "1.3.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "cli", + "data.table", + "dplyr", + "glue", + "lifecycle", + "rlang", + "tibble", + "tidyselect", + "vctrs" + ], + "Hash": "54ed3ea01b11e81a86544faaecfef8e2" + }, + "ellipsis": { + "Package": "ellipsis", + "Version": "0.3.2", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "rlang" + ], + "Hash": "bb0eec2fe32e88d9e2836c2f73ea2077" + }, + "evaluate": { + "Package": "evaluate", + "Version": "0.21", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "methods" + ], + "Hash": "d59f3b464e8da1aef82dc04b588b8dfb" + }, + "fansi": { + "Package": "fansi", + "Version": "1.0.4", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "grDevices", + "utils" + ], + "Hash": "1d9e7ad3c8312a192dea7d3db0274fde" + }, + "farver": { + "Package": "farver", + "Version": "2.1.1", + "Source": "Repository", + "Repository": "RSPM", + "Hash": "8106d78941f34855c440ddb946b8f7a5" + }, + "fastmap": { + "Package": "fastmap", + "Version": "1.1.1", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "f7736a18de97dea803bde0a2daaafb27" + }, + "fontawesome": { + "Package": "fontawesome", + "Version": "0.5.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "htmltools", + "rlang" + ], + "Hash": "1e22b8cabbad1eae951a75e9f8b52378" + }, + "forcats": { + "Package": "forcats", + "Version": "1.0.0", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "cli", + "glue", + "lifecycle", + "magrittr", + "rlang", + "tibble" + ], + "Hash": "1a0a9a3d5083d0d573c4214576f1e690" + }, + "fs": { + "Package": "fs", + "Version": "1.6.2", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "methods" + ], + "Hash": "94af08e0aa9675a16fadbb3aaaa90d2a" + }, + "gargle": { + "Package": "gargle", + "Version": "1.5.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "cli", + "fs", + "glue", + "httr", + "jsonlite", + "lifecycle", + "openssl", + "rappdirs", + "rlang", + "stats", + "utils", + "withr" + ], + "Hash": "d3a3cb2fefea5b3d4f8e0ea33c948406" + }, + "generics": { + "Package": "generics", + "Version": "0.1.3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "methods" + ], + "Hash": "15e9634c0fcd294799e9b2e929ed1b86" + }, + "ggplot2": { + "Package": "ggplot2", + "Version": "3.4.2", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "MASS", + "R", + "cli", + "glue", + "grDevices", + "grid", + "gtable", + "isoband", + "lifecycle", + "mgcv", + "rlang", + "scales", + "stats", + "tibble", + "vctrs", + "withr" + ], + "Hash": "3a147ee02e85a8941aad9909f1b43b7b" + }, + "glue": { + "Package": "glue", + "Version": "1.6.2", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "methods" + ], + "Hash": "4f2596dfb05dac67b9dc558e5c6fba2e" + }, + "googledrive": { + "Package": "googledrive", + "Version": "2.1.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "cli", + "gargle", + "glue", + "httr", + "jsonlite", + "lifecycle", + "magrittr", + "pillar", + "purrr", + "rlang", + "tibble", + "utils", + "uuid", + "vctrs", + "withr" + ], + "Hash": "e99641edef03e2a5e87f0a0b1fcc97f4" + }, + "googlesheets4": { + "Package": "googlesheets4", + "Version": "1.1.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "cellranger", + "cli", + "curl", + "gargle", + "glue", + "googledrive", + "httr", + "ids", + "lifecycle", + "magrittr", + "methods", + "purrr", + "rematch2", + "rlang", + "tibble", + "utils", + "vctrs", + "withr" + ], + "Hash": "d6db1667059d027da730decdc214b959" + }, + "gtable": { + "Package": "gtable", + "Version": "0.3.3", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "cli", + "glue", + "grid", + "lifecycle", + "rlang" + ], + "Hash": "b44addadb528a0d227794121c00572a0" + }, + "haven": { + "Package": "haven", + "Version": "2.5.3", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "cli", + "cpp11", + "forcats", + "hms", + "lifecycle", + "methods", + "readr", + "rlang", + "tibble", + "tidyselect", + "vctrs" + ], + "Hash": "9b302fe352f9cfc5dcf0a4139af3a565" + }, + "here": { + "Package": "here", + "Version": "1.0.1", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "rprojroot" + ], + "Hash": "24b224366f9c2e7534d2344d10d59211" + }, + "highr": { + "Package": "highr", + "Version": "0.10", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "xfun" + ], + "Hash": "06230136b2d2b9ba5805e1963fa6e890" + }, + "hms": { + "Package": "hms", + "Version": "1.1.3", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "lifecycle", + "methods", + "pkgconfig", + "rlang", + "vctrs" + ], + "Hash": "b59377caa7ed00fa41808342002138f9" + }, + "htmltools": { + "Package": "htmltools", + "Version": "0.5.5", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "base64enc", + "digest", + "ellipsis", + "fastmap", + "grDevices", + "rlang", + "utils" + ], + "Hash": "ba0240784ad50a62165058a27459304a" + }, + "httr": { + "Package": "httr", + "Version": "1.4.6", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "R6", + "curl", + "jsonlite", + "mime", + "openssl" + ], + "Hash": "7e5e3cbd2a7bc07880c94e22348fb661" + }, + "ids": { + "Package": "ids", + "Version": "1.0.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "openssl", + "uuid" + ], + "Hash": "99df65cfef20e525ed38c3d2577f7190" + }, + "isoband": { + "Package": "isoband", + "Version": "0.2.7", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "grid", + "utils" + ], + "Hash": "0080607b4a1a7b28979aecef976d8bc2" + }, + "jquerylib": { + "Package": "jquerylib", + "Version": "0.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "htmltools" + ], + "Hash": "5aab57a3bd297eee1c1d862735972182" + }, + "jsonlite": { + "Package": "jsonlite", + "Version": "1.8.7", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "methods" + ], + "Hash": "266a20443ca13c65688b2116d5220f76" + }, + "knitr": { + "Package": "knitr", + "Version": "1.43", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "evaluate", + "highr", + "methods", + "tools", + "xfun", + "yaml" + ], + "Hash": "9775eb076713f627c07ce41d8199d8f6" + }, + "labeling": { + "Package": "labeling", + "Version": "0.4.2", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "graphics", + "stats" + ], + "Hash": "3d5108641f47470611a32d0bdf357a72" + }, + "lattice": { + "Package": "lattice", + "Version": "0.21-8", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "grDevices", + "graphics", + "grid", + "stats", + "utils" + ], + "Hash": "0b8a6d63c8770f02a8b5635f3c431e6b" + }, + "lifecycle": { + "Package": "lifecycle", + "Version": "1.0.3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "cli", + "glue", + "rlang" + ], + "Hash": "001cecbeac1cff9301bdc3775ee46a86" + }, + "lubridate": { + "Package": "lubridate", + "Version": "1.9.2", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "generics", + "methods", + "timechange" + ], + "Hash": "e25f18436e3efd42c7c590a1c4c15390" + }, + "magrittr": { + "Package": "magrittr", + "Version": "2.0.3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R" + ], + "Hash": "7ce2733a9826b3aeb1775d56fd305472" + }, + "memoise": { + "Package": "memoise", + "Version": "2.0.1", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "cachem", + "rlang" + ], + "Hash": "e2817ccf4a065c5d9d7f2cfbe7c1d78c" + }, + "mgcv": { + "Package": "mgcv", + "Version": "1.8-42", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "Matrix", + "R", + "graphics", + "methods", + "nlme", + "splines", + "stats", + "utils" + ], + "Hash": "3460beba7ccc8946249ba35327ba902a" + }, + "mime": { + "Package": "mime", + "Version": "0.12", + "Source": "Repository", + "Repository": "RSPM", + "RemoteType": "standard", + "RemotePkgRef": "mime", + "RemoteRef": "mime", + "RemoteRepos": "https://cran.rstudio.com", + "RemotePkgPlatform": "source", + "RemoteSha": "0.12", + "Requirements": [ + "tools" + ], + "Hash": "18e9c28c1d3ca1560ce30658b22ce104" + }, + "modelr": { + "Package": "modelr", + "Version": "0.1.11", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "broom", + "magrittr", + "purrr", + "rlang", + "tibble", + "tidyr", + "tidyselect", + "vctrs" + ], + "Hash": "4f50122dc256b1b6996a4703fecea821" + }, + "munsell": { + "Package": "munsell", + "Version": "0.5.0", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "colorspace", + "methods" + ], + "Hash": "6dfe8bf774944bd5595785e3229d8771" + }, + "nlme": { + "Package": "nlme", + "Version": "3.1-162", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "graphics", + "lattice", + "stats", + "utils" + ], + "Hash": "0984ce8da8da9ead8643c5cbbb60f83e" + }, + "openssl": { + "Package": "openssl", + "Version": "2.0.6", + "Source": "Repository", + "Repository": "RSPM", + "RemoteType": "repository", + "RemoteUrl": "https://github.com/jeroen/openssl", + "RemoteRef": "v2.0.6", + "RemoteSha": "72aa50a79b99bb1eb57a2668b1c437b1adecbabb", + "Requirements": [ + "askpass" + ], + "Hash": "51976e7d0fcabbadb3c1baec93103756" + }, + "palmerpenguins": { + "Package": "palmerpenguins", + "Version": "0.1.1", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R" + ], + "Hash": "6c6861efbc13c1d543749e9c7be4a592" + }, + "pillar": { + "Package": "pillar", + "Version": "1.9.0", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "cli", + "fansi", + "glue", + "lifecycle", + "rlang", + "utf8", + "utils", + "vctrs" + ], + "Hash": "15da5a8412f317beeee6175fbc76f4bb" + }, + "pkgconfig": { + "Package": "pkgconfig", + "Version": "2.0.3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "utils" + ], + "Hash": "01f28d4278f15c76cddbea05899c5d6f" + }, + "plogr": { + "Package": "plogr", + "Version": "0.2.0", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "09eb987710984fc2905c7129c7d85e65" + }, + "prettyunits": { + "Package": "prettyunits", + "Version": "1.1.1", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "95ef9167b75dde9d2ccc3c7528393e7e" + }, + "processx": { + "Package": "processx", + "Version": "3.8.2", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "R6", + "ps", + "utils" + ], + "Hash": "3efbd8ac1be0296a46c55387aeace0f3" + }, + "progress": { + "Package": "progress", + "Version": "1.2.2", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R6", + "crayon", + "hms", + "prettyunits" + ], + "Hash": "14dc9f7a3c91ebb14ec5bb9208a07061" + }, + "ps": { + "Package": "ps", + "Version": "1.7.5", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "utils" + ], + "Hash": "709d852d33178db54b17c722e5b1e594" + }, + "purrr": { + "Package": "purrr", + "Version": "1.0.1", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "cli", + "lifecycle", + "magrittr", + "rlang", + "vctrs" + ], + "Hash": "d71c815267c640f17ddbf7f16144b4bb" + }, + "ragg": { + "Package": "ragg", + "Version": "1.2.5", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "systemfonts", + "textshaping" + ], + "Hash": "690bc058ea2b1b8a407d3cfe3dce3ef9" + }, + "rappdirs": { + "Package": "rappdirs", + "Version": "0.3.3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R" + ], + "Hash": "5e3c5dc0b071b21fa128676560dbe94d" + }, + "readr": { + "Package": "readr", + "Version": "2.1.4", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "R6", + "cli", + "clipr", + "cpp11", + "crayon", + "hms", + "lifecycle", + "methods", + "rlang", + "tibble", + "tzdb", + "utils", + "vroom" + ], + "Hash": "b5047343b3825f37ad9d3b5d89aa1078" + }, + "readxl": { + "Package": "readxl", + "Version": "1.4.2", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "cellranger", + "cpp11", + "progress", + "tibble", + "utils" + ], + "Hash": "2e6020b1399d95f947ed867045e9ca17" + }, + "rematch": { + "Package": "rematch", + "Version": "1.0.1", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "c66b930d20bb6d858cd18e1cebcfae5c" + }, + "rematch2": { + "Package": "rematch2", + "Version": "2.1.2", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "tibble" + ], + "Hash": "76c9e04c712a05848ae7a23d2f170a40" + }, + "renv": { + "Package": "renv", + "Version": "0.17.3", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "utils" + ], + "Hash": "4543b8cd233ae25c6aba8548be9e747e" + }, + "reprex": { + "Package": "reprex", + "Version": "2.0.2", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "callr", + "cli", + "clipr", + "fs", + "glue", + "knitr", + "lifecycle", + "rlang", + "rmarkdown", + "rstudioapi", + "utils", + "withr" + ], + "Hash": "d66fe009d4c20b7ab1927eb405db9ee2" + }, + "rlang": { + "Package": "rlang", + "Version": "1.1.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "utils" + ], + "Hash": "a85c767b55f0bf9b7ad16c6d7baee5bb" + }, + "rmarkdown": { + "Package": "rmarkdown", + "Version": "2.23", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "bslib", + "evaluate", + "fontawesome", + "htmltools", + "jquerylib", + "jsonlite", + "knitr", + "methods", + "stringr", + "tinytex", + "tools", + "utils", + "xfun", + "yaml" + ], + "Hash": "79f14e53725f28900d936f692bfdd69f" + }, + "rprojroot": { + "Package": "rprojroot", + "Version": "2.0.3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R" + ], + "Hash": "1de7ab598047a87bba48434ba35d497d" + }, + "rstudioapi": { + "Package": "rstudioapi", + "Version": "0.14", + "Source": "Repository", + "Repository": "RSPM", + "Hash": "690bd2acc42a9166ce34845884459320" + }, + "rvest": { + "Package": "rvest", + "Version": "1.0.3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "cli", + "glue", + "httr", + "lifecycle", + "magrittr", + "rlang", + "selectr", + "tibble", + "withr", + "xml2" + ], + "Hash": "a4a5ac819a467808c60e36e92ddf195e" + }, + "sass": { + "Package": "sass", + "Version": "0.4.6", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R6", + "fs", + "htmltools", + "rappdirs", + "rlang" + ], + "Hash": "cc3ec7dd33982ef56570229b62d6388e" + }, + "scales": { + "Package": "scales", + "Version": "1.2.1", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "R6", + "RColorBrewer", + "farver", + "labeling", + "lifecycle", + "munsell", + "rlang", + "viridisLite" + ], + "Hash": "906cb23d2f1c5680b8ce439b44c6fa63" + }, + "selectr": { + "Package": "selectr", + "Version": "0.4-2", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "R6", + "methods", + "stringr" + ], + "Hash": "3838071b66e0c566d55cc26bd6e27bf4" + }, + "stringi": { + "Package": "stringi", + "Version": "1.7.12", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "stats", + "tools", + "utils" + ], + "Hash": "ca8bd84263c77310739d2cf64d84d7c9" + }, + "stringr": { + "Package": "stringr", + "Version": "1.5.0", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "cli", + "glue", + "lifecycle", + "magrittr", + "rlang", + "stringi", + "vctrs" + ], + "Hash": "671a4d384ae9d32fc47a14e98bfa3dc8" + }, + "sys": { + "Package": "sys", + "Version": "3.4.2", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "3a1be13d68d47a8cd0bfd74739ca1555" + }, + "systemfonts": { + "Package": "systemfonts", + "Version": "1.0.4", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "cpp11" + ], + "Hash": "90b28393209827327de889f49935140a" + }, + "textshaping": { + "Package": "textshaping", + "Version": "0.3.6", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "cpp11", + "systemfonts" + ], + "Hash": "1ab6223d3670fac7143202cb6a2d43d5" + }, + "tibble": { + "Package": "tibble", + "Version": "3.2.1", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "fansi", + "lifecycle", + "magrittr", + "methods", + "pillar", + "pkgconfig", + "rlang", + "utils", + "vctrs" + ], + "Hash": "a84e2cc86d07289b3b6f5069df7a004c" + }, + "tidyr": { + "Package": "tidyr", + "Version": "1.3.0", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "cli", + "cpp11", + "dplyr", + "glue", + "lifecycle", + "magrittr", + "purrr", + "rlang", + "stringr", + "tibble", + "tidyselect", + "utils", + "vctrs" + ], + "Hash": "e47debdc7ce599b070c8e78e8ac0cfcf" + }, + "tidyselect": { + "Package": "tidyselect", + "Version": "1.2.0", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "cli", + "glue", + "lifecycle", + "rlang", + "vctrs", + "withr" + ], + "Hash": "79540e5fcd9e0435af547d885f184fd5" + }, + "tidyverse": { + "Package": "tidyverse", + "Version": "2.0.0", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "broom", + "cli", + "conflicted", + "dbplyr", + "dplyr", + "dtplyr", + "forcats", + "ggplot2", + "googledrive", + "googlesheets4", + "haven", + "hms", + "httr", + "jsonlite", + "lubridate", + "magrittr", + "modelr", + "pillar", + "purrr", + "ragg", + "readr", + "readxl", + "reprex", + "rlang", + "rstudioapi", + "rvest", + "stringr", + "tibble", + "tidyr", + "xml2" + ], + "Hash": "c328568cd14ea89a83bd4ca7f54ae07e" + }, + "timechange": { + "Package": "timechange", + "Version": "0.2.0", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "cpp11" + ], + "Hash": "8548b44f79a35ba1791308b61e6012d7" + }, + "tinytex": { + "Package": "tinytex", + "Version": "0.45", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "xfun" + ], + "Hash": "e4e357f28c2edff493936b6cb30c3d65" + }, + "tzdb": { + "Package": "tzdb", + "Version": "0.4.0", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "cpp11" + ], + "Hash": "f561504ec2897f4d46f0c7657e488ae1" + }, + "utf8": { + "Package": "utf8", + "Version": "1.2.3", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R" + ], + "Hash": "1fe17157424bb09c48a8b3b550c753bc" + }, + "uuid": { + "Package": "uuid", + "Version": "1.1-0", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R" + ], + "Hash": "f1cb46c157d080b729159d407be83496" + }, + "vctrs": { + "Package": "vctrs", + "Version": "0.6.3", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "cli", + "glue", + "lifecycle", + "rlang" + ], + "Hash": "d0ef2856b83dc33ea6e255caf6229ee2" + }, + "viridisLite": { + "Package": "viridisLite", + "Version": "0.4.2", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R" + ], + "Hash": "c826c7c4241b6fc89ff55aaea3fa7491" + }, + "vroom": { + "Package": "vroom", + "Version": "1.6.3", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "bit64", + "cli", + "cpp11", + "crayon", + "glue", + "hms", + "lifecycle", + "methods", + "progress", + "rlang", + "stats", + "tibble", + "tidyselect", + "tzdb", + "vctrs", + "withr" + ], + "Hash": "8318e64ffb3a70e652494017ec455561" + }, + "withr": { + "Package": "withr", + "Version": "2.5.0", + "Source": "Repository", + "Repository": "RSPM", + "Requirements": [ + "R", + "grDevices", + "graphics", + "stats" + ], + "Hash": "c0e49a9760983e81e55cdd9be92e7182" + }, + "xfun": { + "Package": "xfun", + "Version": "0.39", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "stats", + "tools" + ], + "Hash": "8f56e9acb54fb525e66464d57ab58bcb" + }, + "xml2": { + "Package": "xml2", + "Version": "1.3.4", + "Source": "Repository", + "Repository": "RSPM", + "RemoteType": "repository", + "RemoteUrl": "https://github.com/r-lib/xml2", + "RemoteRef": "v1.3.4", + "RemoteSha": "c64689836e7e610dff94687241113a4f5d86a174", + "Requirements": [ + "R", + "methods" + ], + "Hash": "6fa99d3c1ed845155a10aed3812ad92b" + }, + "yaml": { + "Package": "yaml", + "Version": "2.3.7", + "Source": "Repository", + "Repository": "CRAN", + "Hash": "0d0056cc5383fbc240ccd0cb584bf436" + } + } +} diff --git a/setup.md b/setup.md new file mode 100644 index 000000000..198e9a591 --- /dev/null +++ b/setup.md @@ -0,0 +1,116 @@ +--- +title: Setup +--- + +## Setup instructions + +**R** and **RStudio** are separate downloads and installations. R is the +underlying statistical computing environment, but using R alone is no +fun. RStudio is a graphical integrated development environment (IDE) that makes +using R much easier and more interactive. You need to install R before you +install RStudio. Once installed, because RStudio is an IDE, RStudio will run R in +the background. You do not need to run it separately. + +After installing both programs, +you will need to install the **`tidyverse`** package from within RStudio. The +**`tidyverse`** package is a powerful collection of data science tools within **R** +see the [**`tidyverse`** website](https://tidyverse.tidyverse.org) for more details. +Follow the instructions below for your operating system, and then follow the +instructions to install **`tidyverse`**. + +### Windows + +#### If you already have R and RStudio installed + +- Open RStudio, and click on "Help" > "Check for updates". If a new version is + available, quit RStudio, and download the latest version for RStudio. +- To check which version of R you are using, start RStudio and the first thing + that appears in the console indicates the version of R you are + running. Alternatively, you can type `sessionInfo()`, which will also display + which version of R you are running. Go on + the [CRAN website](https://cran.r-project.org/bin/windows/base/) and check + whether a more recent version is available. If so, you can update R using + the `installr` package, by running: + +```r +if( !("installr" %in% installed.packages()) ){install.packages("installr")} +installr::updateR(TRUE) +``` + +#### If you don't have R and RStudio installed + +- Download R from + the [CRAN website](http://cran.r-project.org/bin/windows/base/release.htm). +- Run the `.exe` file that was just downloaded. +- Go to the [RStudio download page](https://www.rstudio.com/products/rstudio/download/#download). +- Under *Installers* select **RStudio x.yy.zzz - Windows. + Vista/7/8/10** (where x, y, and z represent version numbers). +- Double click the file to install it. +- Once it's installed, open RStudio to make sure it works and you don't get any + error messages. + +### macOS + +#### If you already have R and RStudio installed + +- Open RStudio, and click on "Help" > "Check for updates". If a new version is + available, quit RStudio, and download the latest version for RStudio. +- To check the version of R you are using, start RStudio and the first thing + that appears on the terminal indicates the version of R you are running. Alternatively, you can type `sessionInfo()`, which will also display which version of R you are running. Go on + the [CRAN website](https://cran.r-project.org/bin/macosx/) and check + whether a more recent version is available. If so, please download and install + it. In any case, make sure you have at least R 3.2. + +#### If you don't have R and RStudio installed + +- Download R from + the [CRAN website](http://cran.r-project.org/bin/macosx/). +- Select the `.pkg` file for the latest R version. +- Double click on the downloaded file to install R. +- It is also a good idea to install [XQuartz](https://www.xquartz.org/) (needed + by some packages). +- Go to the [RStudio download page](https://www.rstudio.com/products/rstudio/download/#download). +- Under *Installers* select **RStudio x.yy.zzz - Mac OS X 10.6+ (64-bit)** + (where x, y, and z represent version numbers). +- Double click the file to install RStudio. +- Once it's installed, open RStudio to make sure it works and you don't get any + error messages. + +### Linux + +- Follow the instructions for your distribution + from [CRAN](https://cloud.r-project.org/bin/linux), they provide information + to get the most recent version of R for common distributions. For most + distributions, you could use your package manager (e.g., for Debian/Ubuntu run + `sudo apt-get install r-base`, and for Fedora `sudo yum install R`), but we + don't recommend this approach as the versions provided by this approach are + usually out of date. In any case, make sure you have at least R 3.2. +- Go to the + [RStudio download page](https://www.rstudio.com/products/rstudio/download/#download). +- Under *Installers* select the version that matches your distribution, and + install it with your preferred method (e.g., with Debian/Ubuntu `sudo dpkg -i rstudio-x.yy.zzz-amd64.deb` at the terminal). +- Once it's installed, open RStudio to make sure it works and you don't get any + error messages. +- Before installing the `tidyverse` package, **Ubuntu** (and related) users may + need to install the following dependencies: `libcurl4-openssl-dev libssl-dev libxml2-dev` + (e.g. `sudo apt install libcurl4-openssl-dev libssl-dev libxml2-dev`). + +### For everyone + +**After installing R and RStudio, you need to install the `tidyverse` and `here` packages.** + +- After starting RStudio, at the console type: + `install.packages("tidyverse")` followed by the enter key. Once this has installed, type + `install.packages("here")` followed by the enter key. Both packages should now be installed. + +- For reference, the lesson uses `SAFI_clean.csv`. The direct download link for + this file is: [https://ndownloader.figshare.com/files/11492171](https://ndownloader.figshare.com/files/11492171). To download + from `R`: + +`download.file("https://ndownloader.figshare.com/files/11492171","data/SAFI_clean.csv", mode = "wb")` + +- The [json episode](https://datacarpentry.org/r-socialsci/07-json.html) uses + `SAFI.json`. The file is available on GitHub + [here](https://github.com/datacarpentry/r-socialsci/blob/main/episodes/data/SAFI.json). + +