QGIS 3.0 - Creating a dot map with multiple categoriesHow to create polygons from a polyline graticule?QGIS 2.4 Processing (Zonal Statistics) errorImporting CSV file with csvt data in QGIS (2.8) will not assign type “date” to fieldsQGIS select by location failingArea of Intersection between two polygon files in QGISDisplaying multiple categories on a QGIS map?Error Heatmap plugin QGIS 3.2.0Grass algorithm r.neighbors doesn't work in Qgis 3.4. How can I solve this?Using gdal_proximity in QGIS modeler?QGIS 3 - Variables in rule-based rendering?
Ticket to ride, 1910: What are the big cities
Would jet fuel for an F-16 or F-35 be producible during WW2?
Should breaking down something like a door be adjudicated as an attempt to beat its AC and HP, or as an ability check against a set DC?
Why colon to denote that a value belongs to a type?
What is quasi-aromaticity?
Is there a way to make it so the cursor is included when I prtscr key?
Why does a perfectly-identical repetition of a drawing command given within an earlier loop 𝘯𝘰𝘵 produce exactly the same line?
Were pens caps holes designed to prevent death by suffocation if swallowed?
Is there some hidden joke behind the "it's never lupus" running gag in House?
How strong are Wi-Fi signals?
Website returning plaintext password
Binary Search in C++17
Where is the logic in castrating fighters?
Does Nitrogen inside commercial airliner wheels prevent blowouts on touchdown?
What is memelemum?
Looking for a soft substance that doesn't dissolve underwater
Where have Brexit voters gone?
What is the largest (size) solid object ever dropped from an airplane to impact the ground in freefall?
Image processing: Removal of two spots in fundus images
How to respond to an upset student?
Why do most published works in medical imaging try to reduce false positives?
Count Even Digits In Number
Would Brexit have gone ahead by now if Gina Miller had not forced the Government to involve Parliament?
Employer asking for online access to bank account - Is this a scam?
QGIS 3.0 - Creating a dot map with multiple categories
How to create polygons from a polyline graticule?QGIS 2.4 Processing (Zonal Statistics) errorImporting CSV file with csvt data in QGIS (2.8) will not assign type “date” to fieldsQGIS select by location failingArea of Intersection between two polygon files in QGISDisplaying multiple categories on a QGIS map?Error Heatmap plugin QGIS 3.2.0Grass algorithm r.neighbors doesn't work in Qgis 3.4. How can I solve this?Using gdal_proximity in QGIS modeler?QGIS 3 - Variables in rule-based rendering?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'd like to create something almost identical to this:
I'd like to display what languages are most spoken within each neightbourhood. My data has 6 languages. Is this possible for a novice like myself? I've put together some maps with 1 category of data (eg. population, income, etc), but never with 6 categories.
My data table looks like this:
Is there a relatively easy way to do this? Is my data organized properly to do so? Is there a better way to represent this data? I've tried using the Random Points Inside Polygons but I can't get it to work.
Here's my error message:
Traceback (most recent call last):
File "C:/OSGEO4~1/apps/qgis/./python/pluginsprocessingalgsqgisRandomPointsPolygons.py", line 165, in processAlgorithm
pointCount = int(value)
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
Execution failed after 0.10 seconds
My data does not have lat & long for each point.
qgis mapping
New contributor
|
show 3 more comments
I'd like to create something almost identical to this:
I'd like to display what languages are most spoken within each neightbourhood. My data has 6 languages. Is this possible for a novice like myself? I've put together some maps with 1 category of data (eg. population, income, etc), but never with 6 categories.
My data table looks like this:
Is there a relatively easy way to do this? Is my data organized properly to do so? Is there a better way to represent this data? I've tried using the Random Points Inside Polygons but I can't get it to work.
Here's my error message:
Traceback (most recent call last):
File "C:/OSGEO4~1/apps/qgis/./python/pluginsprocessingalgsqgisRandomPointsPolygons.py", line 165, in processAlgorithm
pointCount = int(value)
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
Execution failed after 0.10 seconds
My data does not have lat & long for each point.
qgis mapping
New contributor
If you have point-data, simply useclassified
symbology based on the language column.
– Erik
May 20 at 14:56
Hi, Jon! Welcome to the GIS SE! Please make sure that you take the tour to get familiar with the Q&A model we follow here. A good question gives enough detail that other users shouldn't need clarification. Additionally, you should provide as much detail as possible about what you've already attempted in solving this issue yourself. For instance: when you ran random points inside polygons, what wasn't working about it? Did you simply get an output that wasn't suitable, or did it not give you anything?
– JoshC
May 20 at 15:00
Hi Josh. I was unable to produce anything. I get this error message: imgur.com/a/TGbaWb6
– Jon
May 20 at 15:05
Is your tabular data joined to a polygon layer? What does the polygon layer attribute table look like in QGIS?
– JoshC
May 20 at 15:23
Here's an image of both. I got rid of nulls in my data table like you instructed, but it looks like it's still reading them as null when it's connected to my shape file. imgur.com/a/muKCifz. To clarify, I made sure there were no nulls in my data set.
– Jon
May 20 at 15:57
|
show 3 more comments
I'd like to create something almost identical to this:
I'd like to display what languages are most spoken within each neightbourhood. My data has 6 languages. Is this possible for a novice like myself? I've put together some maps with 1 category of data (eg. population, income, etc), but never with 6 categories.
My data table looks like this:
Is there a relatively easy way to do this? Is my data organized properly to do so? Is there a better way to represent this data? I've tried using the Random Points Inside Polygons but I can't get it to work.
Here's my error message:
Traceback (most recent call last):
File "C:/OSGEO4~1/apps/qgis/./python/pluginsprocessingalgsqgisRandomPointsPolygons.py", line 165, in processAlgorithm
pointCount = int(value)
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
Execution failed after 0.10 seconds
My data does not have lat & long for each point.
qgis mapping
New contributor
I'd like to create something almost identical to this:
I'd like to display what languages are most spoken within each neightbourhood. My data has 6 languages. Is this possible for a novice like myself? I've put together some maps with 1 category of data (eg. population, income, etc), but never with 6 categories.
My data table looks like this:
Is there a relatively easy way to do this? Is my data organized properly to do so? Is there a better way to represent this data? I've tried using the Random Points Inside Polygons but I can't get it to work.
Here's my error message:
Traceback (most recent call last):
File "C:/OSGEO4~1/apps/qgis/./python/pluginsprocessingalgsqgisRandomPointsPolygons.py", line 165, in processAlgorithm
pointCount = int(value)
TypeError: int() argument must be a string, a bytes-like object or a number, not 'NoneType'
Execution failed after 0.10 seconds
My data does not have lat & long for each point.
qgis mapping
qgis mapping
New contributor
New contributor
edited May 22 at 4:29
Jon
New contributor
asked May 20 at 14:50
JonJon
112
112
New contributor
New contributor
If you have point-data, simply useclassified
symbology based on the language column.
– Erik
May 20 at 14:56
Hi, Jon! Welcome to the GIS SE! Please make sure that you take the tour to get familiar with the Q&A model we follow here. A good question gives enough detail that other users shouldn't need clarification. Additionally, you should provide as much detail as possible about what you've already attempted in solving this issue yourself. For instance: when you ran random points inside polygons, what wasn't working about it? Did you simply get an output that wasn't suitable, or did it not give you anything?
– JoshC
May 20 at 15:00
Hi Josh. I was unable to produce anything. I get this error message: imgur.com/a/TGbaWb6
– Jon
May 20 at 15:05
Is your tabular data joined to a polygon layer? What does the polygon layer attribute table look like in QGIS?
– JoshC
May 20 at 15:23
Here's an image of both. I got rid of nulls in my data table like you instructed, but it looks like it's still reading them as null when it's connected to my shape file. imgur.com/a/muKCifz. To clarify, I made sure there were no nulls in my data set.
– Jon
May 20 at 15:57
|
show 3 more comments
If you have point-data, simply useclassified
symbology based on the language column.
– Erik
May 20 at 14:56
Hi, Jon! Welcome to the GIS SE! Please make sure that you take the tour to get familiar with the Q&A model we follow here. A good question gives enough detail that other users shouldn't need clarification. Additionally, you should provide as much detail as possible about what you've already attempted in solving this issue yourself. For instance: when you ran random points inside polygons, what wasn't working about it? Did you simply get an output that wasn't suitable, or did it not give you anything?
– JoshC
May 20 at 15:00
Hi Josh. I was unable to produce anything. I get this error message: imgur.com/a/TGbaWb6
– Jon
May 20 at 15:05
Is your tabular data joined to a polygon layer? What does the polygon layer attribute table look like in QGIS?
– JoshC
May 20 at 15:23
Here's an image of both. I got rid of nulls in my data table like you instructed, but it looks like it's still reading them as null when it's connected to my shape file. imgur.com/a/muKCifz. To clarify, I made sure there were no nulls in my data set.
– Jon
May 20 at 15:57
If you have point-data, simply use
classified
symbology based on the language column.– Erik
May 20 at 14:56
If you have point-data, simply use
classified
symbology based on the language column.– Erik
May 20 at 14:56
Hi, Jon! Welcome to the GIS SE! Please make sure that you take the tour to get familiar with the Q&A model we follow here. A good question gives enough detail that other users shouldn't need clarification. Additionally, you should provide as much detail as possible about what you've already attempted in solving this issue yourself. For instance: when you ran random points inside polygons, what wasn't working about it? Did you simply get an output that wasn't suitable, or did it not give you anything?
– JoshC
May 20 at 15:00
Hi, Jon! Welcome to the GIS SE! Please make sure that you take the tour to get familiar with the Q&A model we follow here. A good question gives enough detail that other users shouldn't need clarification. Additionally, you should provide as much detail as possible about what you've already attempted in solving this issue yourself. For instance: when you ran random points inside polygons, what wasn't working about it? Did you simply get an output that wasn't suitable, or did it not give you anything?
– JoshC
May 20 at 15:00
Hi Josh. I was unable to produce anything. I get this error message: imgur.com/a/TGbaWb6
– Jon
May 20 at 15:05
Hi Josh. I was unable to produce anything. I get this error message: imgur.com/a/TGbaWb6
– Jon
May 20 at 15:05
Is your tabular data joined to a polygon layer? What does the polygon layer attribute table look like in QGIS?
– JoshC
May 20 at 15:23
Is your tabular data joined to a polygon layer? What does the polygon layer attribute table look like in QGIS?
– JoshC
May 20 at 15:23
Here's an image of both. I got rid of nulls in my data table like you instructed, but it looks like it's still reading them as null when it's connected to my shape file. imgur.com/a/muKCifz. To clarify, I made sure there were no nulls in my data set.
– Jon
May 20 at 15:57
Here's an image of both. I got rid of nulls in my data table like you instructed, but it looks like it's still reading them as null when it's connected to my shape file. imgur.com/a/muKCifz. To clarify, I made sure there were no nulls in my data set.
– Jon
May 20 at 15:57
|
show 3 more comments
3 Answers
3
active
oldest
votes
From the content of the error message, it would appear that you're trying to run the algorithm on a field which contains null values, so that's the main problem.
Open up the Field Calculator and check the box to Update existing field and select the the field you're creating your points from, which I'm assuming is the "total" field in your data.
Enter the following expression:
if( "number" IS NULL, 0, "number")
This will insert 0's in place of all the nulls, which will allow you to run the Random Points tool now.
I've done this, but I still get the same error message. I wonder if my data is not setup to run a dot map? I don't know how to articulate things as well as I should - I'm still relatively new to this.
– Jon
May 20 at 15:26
add a comment |
In Excel, re-arrange the table so that you have only one row for each Geography value. Create a column for each language, and put the number of speakers of that language in that column. Eg, convert this
to this
I did this manually, but I think you can do it automatically using something called a pivot table, as mentioned here and here.
Save the new table as a CSV. Add the new table to your QGIS project.
Join the new table to the neighborhood layer. Now you have a one-to-one relationship between table rows and neighborhood geometries.
Run Random points inside polygons
once for each language category. Be sure to name each new layer with the name of the language.
There must be something wrong with how I'm joining the tables together. I recreated my table like you instructed. I've loaded both the shape file and the .CSV in QGIS. When I go to join, I select the shape file and join them. Then when I open the Attribute Table for my data set, the numbers appear correct. Nothing is Null. But when I run the Random Points tool it gives me the same error.
– Jon
May 20 at 20:20
There are so many different screenshots at the link you posted I'm having a hard time finding the error message. Can you please add the text of the error message to your original question? Use the edit link under the question.
– csk
May 22 at 1:49
The error message is now in the original question.
– Jon
May 22 at 4:31
add a comment |
The input data you have has blank cells as one of the values. QGIS uses the field you specified to add points up to the number in the field. To do this it converts the field into an integer, but it cannot convert a blank cell into an integer.
The easiest way for you to fix this is to put 0's into the blank cells of your source data.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "79"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Jon is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f323340%2fqgis-3-0-creating-a-dot-map-with-multiple-categories%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
From the content of the error message, it would appear that you're trying to run the algorithm on a field which contains null values, so that's the main problem.
Open up the Field Calculator and check the box to Update existing field and select the the field you're creating your points from, which I'm assuming is the "total" field in your data.
Enter the following expression:
if( "number" IS NULL, 0, "number")
This will insert 0's in place of all the nulls, which will allow you to run the Random Points tool now.
I've done this, but I still get the same error message. I wonder if my data is not setup to run a dot map? I don't know how to articulate things as well as I should - I'm still relatively new to this.
– Jon
May 20 at 15:26
add a comment |
From the content of the error message, it would appear that you're trying to run the algorithm on a field which contains null values, so that's the main problem.
Open up the Field Calculator and check the box to Update existing field and select the the field you're creating your points from, which I'm assuming is the "total" field in your data.
Enter the following expression:
if( "number" IS NULL, 0, "number")
This will insert 0's in place of all the nulls, which will allow you to run the Random Points tool now.
I've done this, but I still get the same error message. I wonder if my data is not setup to run a dot map? I don't know how to articulate things as well as I should - I'm still relatively new to this.
– Jon
May 20 at 15:26
add a comment |
From the content of the error message, it would appear that you're trying to run the algorithm on a field which contains null values, so that's the main problem.
Open up the Field Calculator and check the box to Update existing field and select the the field you're creating your points from, which I'm assuming is the "total" field in your data.
Enter the following expression:
if( "number" IS NULL, 0, "number")
This will insert 0's in place of all the nulls, which will allow you to run the Random Points tool now.
From the content of the error message, it would appear that you're trying to run the algorithm on a field which contains null values, so that's the main problem.
Open up the Field Calculator and check the box to Update existing field and select the the field you're creating your points from, which I'm assuming is the "total" field in your data.
Enter the following expression:
if( "number" IS NULL, 0, "number")
This will insert 0's in place of all the nulls, which will allow you to run the Random Points tool now.
answered May 20 at 15:22
JoshCJoshC
2,2711423
2,2711423
I've done this, but I still get the same error message. I wonder if my data is not setup to run a dot map? I don't know how to articulate things as well as I should - I'm still relatively new to this.
– Jon
May 20 at 15:26
add a comment |
I've done this, but I still get the same error message. I wonder if my data is not setup to run a dot map? I don't know how to articulate things as well as I should - I'm still relatively new to this.
– Jon
May 20 at 15:26
I've done this, but I still get the same error message. I wonder if my data is not setup to run a dot map? I don't know how to articulate things as well as I should - I'm still relatively new to this.
– Jon
May 20 at 15:26
I've done this, but I still get the same error message. I wonder if my data is not setup to run a dot map? I don't know how to articulate things as well as I should - I'm still relatively new to this.
– Jon
May 20 at 15:26
add a comment |
In Excel, re-arrange the table so that you have only one row for each Geography value. Create a column for each language, and put the number of speakers of that language in that column. Eg, convert this
to this
I did this manually, but I think you can do it automatically using something called a pivot table, as mentioned here and here.
Save the new table as a CSV. Add the new table to your QGIS project.
Join the new table to the neighborhood layer. Now you have a one-to-one relationship between table rows and neighborhood geometries.
Run Random points inside polygons
once for each language category. Be sure to name each new layer with the name of the language.
There must be something wrong with how I'm joining the tables together. I recreated my table like you instructed. I've loaded both the shape file and the .CSV in QGIS. When I go to join, I select the shape file and join them. Then when I open the Attribute Table for my data set, the numbers appear correct. Nothing is Null. But when I run the Random Points tool it gives me the same error.
– Jon
May 20 at 20:20
There are so many different screenshots at the link you posted I'm having a hard time finding the error message. Can you please add the text of the error message to your original question? Use the edit link under the question.
– csk
May 22 at 1:49
The error message is now in the original question.
– Jon
May 22 at 4:31
add a comment |
In Excel, re-arrange the table so that you have only one row for each Geography value. Create a column for each language, and put the number of speakers of that language in that column. Eg, convert this
to this
I did this manually, but I think you can do it automatically using something called a pivot table, as mentioned here and here.
Save the new table as a CSV. Add the new table to your QGIS project.
Join the new table to the neighborhood layer. Now you have a one-to-one relationship between table rows and neighborhood geometries.
Run Random points inside polygons
once for each language category. Be sure to name each new layer with the name of the language.
There must be something wrong with how I'm joining the tables together. I recreated my table like you instructed. I've loaded both the shape file and the .CSV in QGIS. When I go to join, I select the shape file and join them. Then when I open the Attribute Table for my data set, the numbers appear correct. Nothing is Null. But when I run the Random Points tool it gives me the same error.
– Jon
May 20 at 20:20
There are so many different screenshots at the link you posted I'm having a hard time finding the error message. Can you please add the text of the error message to your original question? Use the edit link under the question.
– csk
May 22 at 1:49
The error message is now in the original question.
– Jon
May 22 at 4:31
add a comment |
In Excel, re-arrange the table so that you have only one row for each Geography value. Create a column for each language, and put the number of speakers of that language in that column. Eg, convert this
to this
I did this manually, but I think you can do it automatically using something called a pivot table, as mentioned here and here.
Save the new table as a CSV. Add the new table to your QGIS project.
Join the new table to the neighborhood layer. Now you have a one-to-one relationship between table rows and neighborhood geometries.
Run Random points inside polygons
once for each language category. Be sure to name each new layer with the name of the language.
In Excel, re-arrange the table so that you have only one row for each Geography value. Create a column for each language, and put the number of speakers of that language in that column. Eg, convert this
to this
I did this manually, but I think you can do it automatically using something called a pivot table, as mentioned here and here.
Save the new table as a CSV. Add the new table to your QGIS project.
Join the new table to the neighborhood layer. Now you have a one-to-one relationship between table rows and neighborhood geometries.
Run Random points inside polygons
once for each language category. Be sure to name each new layer with the name of the language.
answered May 20 at 19:01
cskcsk
11.4k1236
11.4k1236
There must be something wrong with how I'm joining the tables together. I recreated my table like you instructed. I've loaded both the shape file and the .CSV in QGIS. When I go to join, I select the shape file and join them. Then when I open the Attribute Table for my data set, the numbers appear correct. Nothing is Null. But when I run the Random Points tool it gives me the same error.
– Jon
May 20 at 20:20
There are so many different screenshots at the link you posted I'm having a hard time finding the error message. Can you please add the text of the error message to your original question? Use the edit link under the question.
– csk
May 22 at 1:49
The error message is now in the original question.
– Jon
May 22 at 4:31
add a comment |
There must be something wrong with how I'm joining the tables together. I recreated my table like you instructed. I've loaded both the shape file and the .CSV in QGIS. When I go to join, I select the shape file and join them. Then when I open the Attribute Table for my data set, the numbers appear correct. Nothing is Null. But when I run the Random Points tool it gives me the same error.
– Jon
May 20 at 20:20
There are so many different screenshots at the link you posted I'm having a hard time finding the error message. Can you please add the text of the error message to your original question? Use the edit link under the question.
– csk
May 22 at 1:49
The error message is now in the original question.
– Jon
May 22 at 4:31
There must be something wrong with how I'm joining the tables together. I recreated my table like you instructed. I've loaded both the shape file and the .CSV in QGIS. When I go to join, I select the shape file and join them. Then when I open the Attribute Table for my data set, the numbers appear correct. Nothing is Null. But when I run the Random Points tool it gives me the same error.
– Jon
May 20 at 20:20
There must be something wrong with how I'm joining the tables together. I recreated my table like you instructed. I've loaded both the shape file and the .CSV in QGIS. When I go to join, I select the shape file and join them. Then when I open the Attribute Table for my data set, the numbers appear correct. Nothing is Null. But when I run the Random Points tool it gives me the same error.
– Jon
May 20 at 20:20
There are so many different screenshots at the link you posted I'm having a hard time finding the error message. Can you please add the text of the error message to your original question? Use the edit link under the question.
– csk
May 22 at 1:49
There are so many different screenshots at the link you posted I'm having a hard time finding the error message. Can you please add the text of the error message to your original question? Use the edit link under the question.
– csk
May 22 at 1:49
The error message is now in the original question.
– Jon
May 22 at 4:31
The error message is now in the original question.
– Jon
May 22 at 4:31
add a comment |
The input data you have has blank cells as one of the values. QGIS uses the field you specified to add points up to the number in the field. To do this it converts the field into an integer, but it cannot convert a blank cell into an integer.
The easiest way for you to fix this is to put 0's into the blank cells of your source data.
add a comment |
The input data you have has blank cells as one of the values. QGIS uses the field you specified to add points up to the number in the field. To do this it converts the field into an integer, but it cannot convert a blank cell into an integer.
The easiest way for you to fix this is to put 0's into the blank cells of your source data.
add a comment |
The input data you have has blank cells as one of the values. QGIS uses the field you specified to add points up to the number in the field. To do this it converts the field into an integer, but it cannot convert a blank cell into an integer.
The easiest way for you to fix this is to put 0's into the blank cells of your source data.
The input data you have has blank cells as one of the values. QGIS uses the field you specified to add points up to the number in the field. To do this it converts the field into an integer, but it cannot convert a blank cell into an integer.
The easiest way for you to fix this is to put 0's into the blank cells of your source data.
answered May 20 at 15:19
HeikkiVesantoHeikkiVesanto
9,4102346
9,4102346
add a comment |
add a comment |
Jon is a new contributor. Be nice, and check out our Code of Conduct.
Jon is a new contributor. Be nice, and check out our Code of Conduct.
Jon is a new contributor. Be nice, and check out our Code of Conduct.
Jon is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f323340%2fqgis-3-0-creating-a-dot-map-with-multiple-categories%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
If you have point-data, simply use
classified
symbology based on the language column.– Erik
May 20 at 14:56
Hi, Jon! Welcome to the GIS SE! Please make sure that you take the tour to get familiar with the Q&A model we follow here. A good question gives enough detail that other users shouldn't need clarification. Additionally, you should provide as much detail as possible about what you've already attempted in solving this issue yourself. For instance: when you ran random points inside polygons, what wasn't working about it? Did you simply get an output that wasn't suitable, or did it not give you anything?
– JoshC
May 20 at 15:00
Hi Josh. I was unable to produce anything. I get this error message: imgur.com/a/TGbaWb6
– Jon
May 20 at 15:05
Is your tabular data joined to a polygon layer? What does the polygon layer attribute table look like in QGIS?
– JoshC
May 20 at 15:23
Here's an image of both. I got rid of nulls in my data table like you instructed, but it looks like it's still reading them as null when it's connected to my shape file. imgur.com/a/muKCifz. To clarify, I made sure there were no nulls in my data set.
– Jon
May 20 at 15:57