User Portlet User Portlet

Discussions
I am going to assume that in your solution you want a nested list of string values that represent the Counties with which you are interested. In that case, you will need to apply the EntityValue function to a valid Entity Data Types. However, you...
Sir, Thank you for your reply. I now understand the use of Nearest better. In analyzing your solution I noticed two items that I hope you can comment on: 1. The use of the `#[[1]] -> #` in `Nearest[#[[1]] -> # & /@ data]`. I...
Try... Take[thedata, {4, Length[thedata], 10}] Where "thedata" is your list of values...
Or... testfunc[x_, y_, z_, t_] := x + y + z + t; testfunc[#1, #2, #3, #4] & @@@ {{1, 2, 3, 4}, {5, 6, 7, 8}} To me, it is not always intuitive as to how to use the "@" operator against lists, but interpreting the resultant error...